Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zzha zzha
OpenXG-RAN
Commits
2a47123b
Commit
2a47123b
authored
Jun 01, 2023
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add nr-cuup to OpenShift build system
parent
be2a227e
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
155 additions
and
2 deletions
+155
-2
ci-scripts/cls_cluster.py
ci-scripts/cls_cluster.py
+10
-2
docker/Dockerfile.nr-cuup.rhel8.2
docker/Dockerfile.nr-cuup.rhel8.2
+78
-0
openshift/oai-nr-cuup-bc.yaml
openshift/oai-nr-cuup-bc.yaml
+37
-0
openshift/oai-nr-cuup-is.yaml
openshift/oai-nr-cuup-is.yaml
+30
-0
No files found.
ci-scripts/cls_cluster.py
View file @
2a47123b
...
...
@@ -376,6 +376,13 @@ class Cluster:
self
.
cmd
.
run
(
f'oc logs
{
gnb_job
}
&> cmake_targets/log/oai-gnb.log'
)
self
.
cmd
.
run
(
f'oc logs
{
gnb_aw2s_job
}
&> cmake_targets/log/oai-gnb-aw2s.log'
)
self
.
_recreate_is_tag
(
'oai-nr-cuup'
,
imageTag
,
'openshift/oai-nr-cuup-is.yaml'
)
self
.
_recreate_bc
(
'oai-nr-cuup'
,
imageTag
,
'openshift/oai-nr-cuup-bc.yaml'
)
self
.
_retag_image_statement
(
'ran-base'
,
'image-registry.openshift-image-registry.svc:5000/oaicicd-ran/ran-base'
,
baseTag
,
'docker/Dockerfile.nr-cuup.rhel8.2'
)
self
.
_retag_image_statement
(
'ran-build'
,
'image-registry.openshift-image-registry.svc:5000/oaicicd-ran/ran-build'
,
imageTag
,
'docker/Dockerfile.nr-cuup.rhel8.2'
)
nr_cuup_job
=
self
.
_start_build
(
'oai-nr-cuup'
)
attemptedImages
+=
[
'oai-nr-cuup'
]
self
.
_recreate_is_tag
(
'oai-lte-ue'
,
imageTag
,
'openshift/oai-lte-ue-is.yaml'
)
self
.
_recreate_bc
(
'oai-lte-ue'
,
imageTag
,
'openshift/oai-lte-ue-bc.yaml'
)
self
.
_retag_image_statement
(
'ran-base'
,
'image-registry.openshift-image-registry.svc:5000/oaicicd-ran/ran-base'
,
baseTag
,
'docker/Dockerfile.lteUE.rhel8.2'
)
...
...
@@ -390,10 +397,11 @@ class Cluster:
nrue_job
=
self
.
_start_build
(
'oai-nr-ue'
)
attemptedImages
+=
[
'oai-nr-ue'
]
wait
=
lteue_job
is
not
None
and
nrue_job
is
not
None
and
self
.
_wait_build_end
([
lteue_job
,
nrue_job
],
600
)
if
not
wait
:
logging
.
error
(
'error during build of lteUE/nrUE'
)
wait
=
nr_cuup_job
is
not
None
and
lteue_job
is
not
None
and
nrue_job
is
not
None
and
self
.
_wait_build_end
([
nr_cuup_job
,
lteue_job
,
nrue_job
],
600
)
if
not
wait
:
logging
.
error
(
'error during build of
nr-cuup/
lteUE/nrUE'
)
status
=
status
and
wait
# recover logs
self
.
cmd
.
run
(
f'oc logs
{
nr_cuup_job
}
&> cmake_targets/log/oai-nr-cuup.log'
)
self
.
cmd
.
run
(
f'oc logs
{
lteue_job
}
&> cmake_targets/log/oai-lte-ue.log'
)
self
.
cmd
.
run
(
f'oc logs
{
nrue_job
}
&> cmake_targets/log/oai-nr-ue.log'
)
self
.
cmd
.
run
(
f'oc get pods.metrics.k8s.io &>> cmake_targets/log/build-metrics.log'
,
'\$'
,
10
)
...
...
docker/Dockerfile.nr-cuup.rhel8.2
0 → 100644
View file @
2a47123b
#/*
# * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
# * contributor license agreements. See the NOTICE file distributed with
# * this work for additional information regarding copyright ownership.
# * The OpenAirInterface Software Alliance licenses this file to You under
# * the OAI Public License, Version 1.1 (the "License"); you may not use this file
# * except in compliance with the License.
# * You may obtain a copy of the License at
# *
# * http://www.openairinterface.org/?page_id=698
# *
# * Unless required by applicable law or agreed to in writing, software
# * distributed under the License is distributed on an "AS IS" BASIS,
# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# * See the License for the specific language governing permissions and
# * limitations under the License.
# *-------------------------------------------------------------------------------
# * For more information about the OpenAirInterface (OAI) Software Alliance:
# * contact@openairinterface.org
# */
#---------------------------------------------------------------------
#
# Dockerfile for the Open-Air-Interface BUILD service
# Valid for RHEL 8.2
#
#---------------------------------------------------------------------
FROM ran-base:latest AS gnb-base
FROM ran-build:latest AS gnb-build
RUN cp /oai-ran/docker/scripts/gnb_entrypoint.sh /oai-ran/docker/scripts/entrypoint.sh
#start from scratch for target executable
FROM registry.access.redhat.com/ubi8/ubi:latest as oai-nr-cuup
ENV TZ=Europe/Paris
RUN yum repolist --disablerepo=* && \
yum update -y && \
yum install -y --enablerepo="ubi-8-codeready-builder" \
procps-ng \
lksctp-tools \
tzdata \
atlas \
net-tools \
iputils && \
echo "/usr/local/lib" > /etc/ld.so.conf.d/local-lib.conf && \
echo "/usr/local/lib64" >> /etc/ld.so.conf.d/local-lib.conf
WORKDIR /opt/oai-gnb/bin
COPY --from=gnb-build \
/oai-ran/cmake_targets/ran_build/build/nr-cuup \
/oai-ran/docker/scripts/entrypoint.sh \
./
COPY --from=gnb-build \
/oai-ran/cmake_targets/ran_build/build/libparams_libconfig.so \
/oai-ran/cmake_targets/ran_build/build/libtelnetsrv.so \
/usr/local/lib/
COPY --from=gnb-base \
/lib64/libconfig.so.9 \
/lib64/libblas.so.3 \
/lib64/liblapack.so.3 \
/lib64/liblapacke.so.3 \
/lib64/
RUN ldconfig && \
echo "ldd on nr-cuup" && ldd /opt/oai-gnb/bin/nr-cuup && \
echo "ldd on libparams_libconfig" && ldd /usr/local/lib/libparams_libconfig.so && \
echo "ldd on libtelnetsrv" && ldd /usr/local/lib/libtelnetsrv.so
WORKDIR /opt/oai-gnb/etc
WORKDIR /opt/oai-gnb
ENTRYPOINT ["/opt/oai-gnb/bin/entrypoint.sh"]
CMD ["/opt/oai-gnb/bin/nr-cuup", "-O", "/opt/oai-gnb/etc/gnb.conf"]
openshift/oai-nr-cuup-bc.yaml
0 → 100644
View file @
2a47123b
#/*
# * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
# * contributor license agreements. See the NOTICE file distributed with
# * this work for additional information regarding copyright ownership.
# * The OpenAirInterface Software Alliance licenses this file to You under
# * the OAI Public License, Version 1.1 (the "License"); you may not use this file
# * except in compliance with the License.
# * You may obtain a copy of the License at
# *
# * http://www.openairinterface.org/?page_id=698
# *
# * Unless required by applicable law or agreed to in writing, software
# * distributed under the License is distributed on an "AS IS" BASIS,
# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# * See the License for the specific language governing permissions and
# * limitations under the License.
# *-------------------------------------------------------------------------------
# * For more information about the OpenAirInterface (OAI) Software Alliance:
# * contact@openairinterface.org
# */
#---------------------------------------------------------------------
#
kind
:
BuildConfig
apiVersion
:
build.openshift.io/v1
metadata
:
name
:
"
oai-nr-cuup"
spec
:
runPolicy
:
"
Serial"
source
:
type
:
"
Binary"
strategy
:
dockerStrategy
:
dockerfilePath
:
"
docker/Dockerfile.nr-cuup.rhel8.2"
output
:
to
:
kind
:
"
ImageStreamTag"
name
:
"
oai-nr-cuup:latest"
openshift/oai-nr-cuup-is.yaml
0 → 100644
View file @
2a47123b
#/*
# * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
# * contributor license agreements. See the NOTICE file distributed with
# * this work for additional information regarding copyright ownership.
# * The OpenAirInterface Software Alliance licenses this file to You under
# * the OAI Public License, Version 1.1 (the "License"); you may not use this file
# * except in compliance with the License.
# * You may obtain a copy of the License at
# *
# * http://www.openairinterface.org/?page_id=698
# *
# * Unless required by applicable law or agreed to in writing, software
# * distributed under the License is distributed on an "AS IS" BASIS,
# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# * See the License for the specific language governing permissions and
# * limitations under the License.
# *-------------------------------------------------------------------------------
# * For more information about the OpenAirInterface (OAI) Software Alliance:
# * contact@openairinterface.org
# */
#---------------------------------------------------------------------
#
apiVersion
:
image.openshift.io/v1
kind
:
ImageStream
metadata
:
name
:
oai-nr-cuup
namespace
:
oaicicd-ran
spec
:
lookupPolicy
:
local
:
true
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment