Initial commit

This commit is contained in:
infidel
2023-03-14 15:32:53 +07:00
commit cc1a8ad5a9
78 changed files with 3811 additions and 0 deletions

View File

@@ -0,0 +1,115 @@
kind: DeploymentConfig
apiVersion: apps.openshift.io/v1
metadata:
annotations:
app.openshift.io/connects-to: '[{"apiVersion":"apps.openshift.io/v1","kind":"Deployment","name":"oai-amf"},{"apiVersion":"apps/v1","kind":"Deployment","name":"oai-amf"}]'
name: oai-cu-01
generation: 28
namespace: infidel-test
labels:
app: oai-cu-01
app.kubernetes.io/part-of: trainee-01
spec:
strategy:
type: Rolling
rollingParams:
updatePeriodSeconds: 1
intervalSeconds: 1
timeoutSeconds: 600
maxUnavailable: 0
maxSurge: 1
resources: {}
activeDeadlineSeconds: 21600
triggers:
- type: ImageChange
imageChangeParams:
automatic: true
containerNames:
- inf-cu
from:
kind: ImageStreamTag
namespace: infidel-test
name: 'oai-gnb-official:2023.w05'
- type: ConfigChange
replicas: 1
revisionHistoryLimit: 10
test: false
template:
metadata:
creationTimestamp: null
labels:
app: oai-inf-cu-sa
annotations:
k8s.v1.cni.cncf.io/networks: oai-cu-amf-01-net,oai-cu-du-01-net
spec:
restartPolicy: Always
serviceAccountName: oai-sa
schedulerName: default-scheduler
terminationGracePeriodSeconds: 30
securityContext: {}
containers:
- name: inf-cu
resources: {}
volumeMounts:
- name: dev-tun
readOnly: true
mountPath: /dev/net/tun
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
imagePullPolicy: Always
securityContext:
add:
- SYS_ADMIN
- NET_ADMIN
privileged: true
env:
- name: RFSIMULATOR
value: server
- name: USE_SA_CU
value: "1"
- name: GNB_NAME
value: gnb-cu-01
- name: GNB_ID
value: "e01"
- name: TAC
value: "1"
- name: MCC
value: "208"
- name: MNC
value: "99"
- name: MNC_LENGTH
value: "2"
- name: NSSAI_SST
value: "1"
- name: AMF_IP_ADDRESS
value: "192.168.34.11"
- name: UPF_IP_ADDRESS
value: "192.168.34.10"
- name: GNB_NGA_IF_NAME
value: net1
- name: GNB_NGA_IP_ADDRESS
value: "192.168.34.12"
- name: GNB_NGU_IF_NAME
value: net1
- name: GNB_NGU_IP_ADDRESS
value: "192.168.34.12"
- name: F1_IF_NAME
value: "net2"
- name: F1_DU_IP_ADDRESS
value: "192.168.35.13"
- name: F1_CU_IP_ADDRESS
value: "192.168.35.12"
- name: F1_DU_D_PORT
value: "2153"
- name: F1_CU_D_PORT
value: "2153"
- name: USE_ADDITIONAL_OPTIONS
value: --sa --rfsim --log_config.global_log_options level,nocolor,time
serviceAccount: oai-sa
volumes:
- name: dev-tun
hostPath:
path: /dev/net/tun
type: ''
dnsPolicy: ClusterFirst

View File

@@ -0,0 +1,115 @@
kind: DeploymentConfig
apiVersion: apps.openshift.io/v1
metadata:
annotations:
app.openshift.io/connects-to: '[{"apiVersion":"apps.openshift.io/v1","kind":"Deployment","name":"oai-amf"},{"apiVersion":"apps/v1","kind":"Deployment","name":"oai-amf"}]'
name: oai-cu-02
generation: 28
namespace: infidel-test
labels:
app: oai-cu-02
app.kubernetes.io/part-of: trainee-02
spec:
strategy:
type: Rolling
rollingParams:
updatePeriodSeconds: 1
intervalSeconds: 1
timeoutSeconds: 600
maxUnavailable: 0
maxSurge: 1
resources: {}
activeDeadlineSeconds: 21600
triggers:
- type: ImageChange
imageChangeParams:
automatic: true
containerNames:
- inf-cu
from:
kind: ImageStreamTag
namespace: infidel-test
name: 'oai-gnb-official:2023.w05'
- type: ConfigChange
replicas: 1
revisionHistoryLimit: 10
test: false
template:
metadata:
creationTimestamp: null
labels:
app: oai-inf-cu-sa
annotations:
k8s.v1.cni.cncf.io/networks: oai-cu-amf-02-net,oai-cu-du-02-net
spec:
restartPolicy: Always
serviceAccountName: oai-sa
schedulerName: default-scheduler
terminationGracePeriodSeconds: 30
securityContext: {}
containers:
- name: inf-cu
resources: {}
volumeMounts:
- name: dev-tun
readOnly: true
mountPath: /dev/net/tun
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
imagePullPolicy: Always
securityContext:
add:
- SYS_ADMIN
- NET_ADMIN
privileged: true
env:
- name: RFSIMULATOR
value: server
- name: USE_SA_CU
value: "1"
- name: GNB_NAME
value: gnb-cu-02
- name: GNB_ID
value: "e02"
- name: TAC
value: "1"
- name: MCC
value: "208"
- name: MNC
value: "99"
- name: MNC_LENGTH
value: "2"
- name: NSSAI_SST
value: "1"
- name: AMF_IP_ADDRESS
value: "192.168.34.11"
- name: UPF_IP_ADDRESS
value: "192.168.34.10"
- name: GNB_NGA_IF_NAME
value: net1
- name: GNB_NGA_IP_ADDRESS
value: "192.168.34.13"
- name: GNB_NGU_IF_NAME
value: net1
- name: GNB_NGU_IP_ADDRESS
value: "192.168.34.13"
- name: F1_IF_NAME
value: "net2"
- name: F1_DU_IP_ADDRESS
value: "192.168.35.16"
- name: F1_CU_IP_ADDRESS
value: "192.168.35.15"
- name: F1_DU_D_PORT
value: "2153"
- name: F1_CU_D_PORT
value: "2153"
- name: USE_ADDITIONAL_OPTIONS
value: --sa --rfsim --log_config.global_log_options level,nocolor,time
serviceAccount: oai-sa
volumes:
- name: dev-tun
hostPath:
path: /dev/net/tun
type: ''
dnsPolicy: ClusterFirst

View File

@@ -0,0 +1,115 @@
kind: DeploymentConfig
apiVersion: apps.openshift.io/v1
metadata:
annotations:
app.openshift.io/connects-to: '[{"apiVersion":"apps.openshift.io/v1","kind":"Deployment","name":"oai-amf"},{"apiVersion":"apps/v1","kind":"Deployment","name":"oai-amf"}]'
name: oai-cu-03
generation: 28
namespace: infidel-test
labels:
app: oai-cu-03
app.kubernetes.io/part-of: trainee-03
spec:
strategy:
type: Rolling
rollingParams:
updatePeriodSeconds: 1
intervalSeconds: 1
timeoutSeconds: 600
maxUnavailable: 0
maxSurge: 1
resources: {}
activeDeadlineSeconds: 21600
triggers:
- type: ImageChange
imageChangeParams:
automatic: true
containerNames:
- inf-cu
from:
kind: ImageStreamTag
namespace: infidel-test
name: 'oai-gnb-official:2023.w05'
- type: ConfigChange
replicas: 1
revisionHistoryLimit: 10
test: false
template:
metadata:
creationTimestamp: null
labels:
app: oai-inf-cu-sa
annotations:
k8s.v1.cni.cncf.io/networks: oai-cu-amf-03-net,oai-cu-du-03-net
spec:
restartPolicy: Always
serviceAccountName: oai-sa
schedulerName: default-scheduler
terminationGracePeriodSeconds: 30
securityContext: {}
containers:
- name: inf-cu
resources: {}
volumeMounts:
- name: dev-tun
readOnly: true
mountPath: /dev/net/tun
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
imagePullPolicy: Always
securityContext:
add:
- SYS_ADMIN
- NET_ADMIN
privileged: true
env:
- name: RFSIMULATOR
value: server
- name: USE_SA_CU
value: "1"
- name: GNB_NAME
value: gnb-cu-03
- name: GNB_ID
value: "e03"
- name: TAC
value: "1"
- name: MCC
value: "208"
- name: MNC
value: "99"
- name: MNC_LENGTH
value: "2"
- name: NSSAI_SST
value: "1"
- name: AMF_IP_ADDRESS
value: "192.168.34.11"
- name: UPF_IP_ADDRESS
value: "192.168.34.10"
- name: GNB_NGA_IF_NAME
value: net1
- name: GNB_NGA_IP_ADDRESS
value: "192.168.34.14"
- name: GNB_NGU_IF_NAME
value: net1
- name: GNB_NGU_IP_ADDRESS
value: "192.168.34.14"
- name: F1_IF_NAME
value: "net2"
- name: F1_DU_IP_ADDRESS
value: "192.168.35.19"
- name: F1_CU_IP_ADDRESS
value: "192.168.35.18"
- name: F1_DU_D_PORT
value: "2153"
- name: F1_CU_D_PORT
value: "2153"
- name: USE_ADDITIONAL_OPTIONS
value: --sa --rfsim --log_config.global_log_options level,nocolor,time
serviceAccount: oai-sa
volumes:
- name: dev-tun
hostPath:
path: /dev/net/tun
type: ''
dnsPolicy: ClusterFirst

View File

@@ -0,0 +1,115 @@
kind: DeploymentConfig
apiVersion: apps.openshift.io/v1
metadata:
annotations:
app.openshift.io/connects-to: '[{"apiVersion":"apps.openshift.io/v1","kind":"DeploymentConfig","name":"oai-cu-01"},{"apiVersion":"apps/v1","kind":"DeploymentConfig","name":"oai-cu-01"}]'
name: oai-du-01
generation: 28
namespace: infidel-test
labels:
app: oai-du-01
app.kubernetes.io/part-of: trainee-01
spec:
strategy:
type: Rolling
rollingParams:
updatePeriodSeconds: 1
intervalSeconds: 1
timeoutSeconds: 600
maxUnavailable: 0
maxSurge: 1
resources: {}
activeDeadlineSeconds: 21600
triggers:
- type: ImageChange
imageChangeParams:
automatic: true
containerNames:
- inf-du
from:
kind: ImageStreamTag
namespace: infidel-test
name: 'oai-gnb-official:2023.w05'
- type: ConfigChange
replicas: 1
revisionHistoryLimit: 10
test: false
template:
metadata:
creationTimestamp: null
labels:
app: oai-inf-du-sa
annotations:
k8s.v1.cni.cncf.io/networks: oai-du-cu-01-net
spec:
restartPolicy: Always
serviceAccountName: oai-sa
schedulerName: default-scheduler
terminationGracePeriodSeconds: 30
securityContext: {}
containers:
- name: inf-du
resources: {}
volumeMounts:
- name: dev-tun
readOnly: true
mountPath: /dev/net/tun
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
imagePullPolicy: Always
securityContext:
add:
- SYS_ADMIN
- NET_ADMIN
privileged: true
env:
- name: RFSIMULATOR
value: server
- name: USE_SA_TDD_DU
value: "1"
- name: GNB_NAME
value: gnb-du-01
- name: GNB_ID
value: "e01"
- name: TAC
value: "1"
- name: MCC
value: "208"
- name: MNC
value: "99"
- name: MNC_LENGTH
value: "2"
- name: NSSAI_SST
value: "1"
- name: AMF_IP_ADDRESS
value: "192.168.34.11"
- name: UPF_IP_ADDRESS
value: "192.168.34.10"
- name: GNB_NGA_IF_NAME
value: net1
- name: GNB_NGA_IP_ADDRESS
value: "192.168.34.12"
- name: GNB_NGU_IF_NAME
value: net1
- name: GNB_NGU_IP_ADDRESS
value: "192.168.34.12"
- name: F1_IF_NAME
value: "net2"
- name: F1_DU_IP_ADDRESS
value: "192.168.35.13"
- name: F1_CU_IP_ADDRESS
value: "192.168.35.12"
- name: F1_DU_D_PORT
value: "2153"
- name: F1_CU_D_PORT
value: "2153"
- name: USE_ADDITIONAL_OPTIONS
value: --sa --rfsim --log_config.global_log_options level,nocolor,time
serviceAccount: oai-sa
volumes:
- name: dev-tun
hostPath:
path: /dev/net/tun
type: ''
dnsPolicy: ClusterFirst

View File

@@ -0,0 +1,115 @@
kind: DeploymentConfig
apiVersion: apps.openshift.io/v1
metadata:
annotations:
app.openshift.io/connects-to: '[{"apiVersion":"apps.openshift.io/v1","kind":"DeploymentConfig","name":"oai-cu-02"},{"apiVersion":"apps/v1","kind":"DeploymentConfig","name":"oai-cu-02"}]'
name: oai-du-02
generation: 28
namespace: infidel-test
labels:
app: oai-du-02
app.kubernetes.io/part-of: trainee-02
spec:
strategy:
type: Rolling
rollingParams:
updatePeriodSeconds: 1
intervalSeconds: 1
timeoutSeconds: 600
maxUnavailable: 0
maxSurge: 1
resources: {}
activeDeadlineSeconds: 21600
triggers:
- type: ImageChange
imageChangeParams:
automatic: true
containerNames:
- inf-du
from:
kind: ImageStreamTag
namespace: infidel-test
name: 'oai-gnb-official:2023.w05'
- type: ConfigChange
replicas: 1
revisionHistoryLimit: 10
test: false
template:
metadata:
creationTimestamp: null
labels:
app: oai-inf-du-sa
annotations:
k8s.v1.cni.cncf.io/networks: oai-du-cu-02-net
spec:
restartPolicy: Always
serviceAccountName: oai-sa
schedulerName: default-scheduler
terminationGracePeriodSeconds: 30
securityContext: {}
containers:
- name: inf-du
resources: {}
volumeMounts:
- name: dev-tun
readOnly: true
mountPath: /dev/net/tun
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
imagePullPolicy: Always
securityContext:
add:
- SYS_ADMIN
- NET_ADMIN
privileged: true
env:
- name: RFSIMULATOR
value: server
- name: USE_SA_TDD_DU
value: "1"
- name: GNB_NAME
value: gnb-du-02
- name: GNB_ID
value: "e02"
- name: TAC
value: "1"
- name: MCC
value: "208"
- name: MNC
value: "99"
- name: MNC_LENGTH
value: "2"
- name: NSSAI_SST
value: "1"
- name: AMF_IP_ADDRESS
value: "192.168.34.11"
- name: UPF_IP_ADDRESS
value: "192.168.34.10"
- name: GNB_NGA_IF_NAME
value: net1
- name: GNB_NGA_IP_ADDRESS
value: "192.168.34.13"
- name: GNB_NGU_IF_NAME
value: net1
- name: GNB_NGU_IP_ADDRESS
value: "192.168.34.13"
- name: F1_IF_NAME
value: "net2"
- name: F1_DU_IP_ADDRESS
value: "192.168.35.16"
- name: F1_CU_IP_ADDRESS
value: "192.168.35.15"
- name: F1_DU_D_PORT
value: "2153"
- name: F1_CU_D_PORT
value: "2153"
- name: USE_ADDITIONAL_OPTIONS
value: --sa --rfsim --log_config.global_log_options level,nocolor,time
serviceAccount: oai-sa
volumes:
- name: dev-tun
hostPath:
path: /dev/net/tun
type: ''
dnsPolicy: ClusterFirst

View File

@@ -0,0 +1,115 @@
kind: DeploymentConfig
apiVersion: apps.openshift.io/v1
metadata:
annotations:
app.openshift.io/connects-to: '[{"apiVersion":"apps.openshift.io/v1","kind":"DeploymentConfig","name":"oai-cu-03"},{"apiVersion":"apps/v1","kind":"DeploymentConfig","name":"oai-cu-03"}]'
name: oai-du-03
generation: 28
namespace: infidel-test
labels:
app: oai-du-03
app.kubernetes.io/part-of: trainee-03
spec:
strategy:
type: Rolling
rollingParams:
updatePeriodSeconds: 1
intervalSeconds: 1
timeoutSeconds: 600
maxUnavailable: 0
maxSurge: 1
resources: {}
activeDeadlineSeconds: 21600
triggers:
- type: ImageChange
imageChangeParams:
automatic: true
containerNames:
- inf-du
from:
kind: ImageStreamTag
namespace: infidel-test
name: 'oai-gnb-official:2023.w05'
- type: ConfigChange
replicas: 1
revisionHistoryLimit: 10
test: false
template:
metadata:
creationTimestamp: null
labels:
app: oai-inf-du-sa
annotations:
k8s.v1.cni.cncf.io/networks: oai-du-cu-03-net
spec:
restartPolicy: Always
serviceAccountName: oai-sa
schedulerName: default-scheduler
terminationGracePeriodSeconds: 30
securityContext: {}
containers:
- name: inf-du
resources: {}
volumeMounts:
- name: dev-tun
readOnly: true
mountPath: /dev/net/tun
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
imagePullPolicy: Always
securityContext:
add:
- SYS_ADMIN
- NET_ADMIN
privileged: true
env:
- name: RFSIMULATOR
value: server
- name: USE_SA_TDD_DU
value: "1"
- name: GNB_NAME
value: gnb-du-03
- name: GNB_ID
value: "e03"
- name: TAC
value: "1"
- name: MCC
value: "208"
- name: MNC
value: "99"
- name: MNC_LENGTH
value: "2"
- name: NSSAI_SST
value: "1"
- name: AMF_IP_ADDRESS
value: "192.168.34.11"
- name: UPF_IP_ADDRESS
value: "192.168.34.10"
- name: GNB_NGA_IF_NAME
value: net1
- name: GNB_NGA_IP_ADDRESS
value: "192.168.34.14"
- name: GNB_NGU_IF_NAME
value: net1
- name: GNB_NGU_IP_ADDRESS
value: "192.168.34.14"
- name: F1_IF_NAME
value: "net2"
- name: F1_DU_IP_ADDRESS
value: "192.168.35.19"
- name: F1_CU_IP_ADDRESS
value: "192.168.35.18"
- name: F1_DU_D_PORT
value: "2153"
- name: F1_CU_D_PORT
value: "2153"
- name: USE_ADDITIONAL_OPTIONS
value: --sa --rfsim --log_config.global_log_options level,nocolor,time
serviceAccount: oai-sa
volumes:
- name: dev-tun
hostPath:
path: /dev/net/tun
type: ''
dnsPolicy: ClusterFirst

View File

@@ -0,0 +1,81 @@
kind: Deployment
apiVersion: apps/v1
metadata:
annotations:
app.openshift.io/connects-to: '[{"apiVersion":"apps.openshift.io/v1","kind":"DeploymentConfig","name":"oai-du-01"},{"apiVersion":"apps/v1","kind":"DeploymentConfig","name":"oai-du-01"}]'
name: oai-nr-ue-01
namespace: infidel-test
labels:
app.kubernetes.io/part-of: trainee-01
spec:
replicas: 1
selector:
matchLabels:
app.kubernetes.io/part-of: trainee-01
template:
metadata:
labels:
app.kubernetes.io/part-of: trainee-01
creationTimestamp: null
annotations:
k8s.v1.cni.cncf.io/networks: 'oai-ue-du-01-net'
kompose.cmd: kompose convert -f ../docker-compose.yaml
spec:
restartPolicy: Always
serviceAccountName: oai-sa
schedulerName: default-scheduler
terminationGracePeriodSeconds: 30
securityContext: {}
containers:
- resources: {}
terminationMessagePath: /dev/termination-log
name: rfsim5g-oai-nr-ue
livenessProbe:
exec:
command:
- /bin/bash -c "pgrep nr-uesoftmodem"
timeoutSeconds: 5
periodSeconds: 10
successThreshold: 1
failureThreshold: 5
env:
- name: DNN
value: oai
- name: FULL_IMSI
value: '208990200000001'
- name: FULL_KEY
value: fec86ba6eb707ed08905757b1bb44b8f
- name: NSSAI_SST
value: '1'
- name: OPC
value: c42449363bbad02b66d16bc975d77cc1
- name: RFSIMULATOR
value: 192.168.35.13
- name: USE_ADDITIONAL_OPTIONS
value: >-
--sa --rfsim -r 106 --numerology 1 -C 3619200000 --nokrnmod
--log_config.global_log_options level,nocolor,time
securityContext:
privileged: true
imagePullPolicy: IfNotPresent
volumeMounts:
- name: dev-tun
readOnly: true
mountPath: /dev/net/tun
terminationMessagePolicy: File
image: 'oaisoftwarealliance/oai-nr-ue:develop'
serviceAccount: oai-sa
volumes:
- name: dev-tun
hostPath:
path: /dev/net/tun
type: ''
dnsPolicy: ClusterFirst
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 25%
maxSurge: 25%
revisionHistoryLimit: 10
progressDeadlineSeconds: 600

View File

@@ -0,0 +1,81 @@
kind: Deployment
apiVersion: apps/v1
metadata:
annotations:
app.openshift.io/connects-to: '[{"apiVersion":"apps.openshift.io/v1","kind":"DeploymentConfig","name":"oai-du-02"},{"apiVersion":"apps/v1","kind":"DeploymentConfig","name":"oai-du-02"}]'
name: oai-nr-ue-02
namespace: infidel-test
labels:
app.kubernetes.io/part-of: trainee-02
spec:
replicas: 1
selector:
matchLabels:
app.kubernetes.io/part-of: trainee-02
template:
metadata:
labels:
app.kubernetes.io/part-of: trainee-02
creationTimestamp: null
annotations:
k8s.v1.cni.cncf.io/networks: 'oai-ue-du-02-net'
kompose.cmd: kompose convert -f ../docker-compose.yaml
spec:
restartPolicy: Always
serviceAccountName: oai-sa
schedulerName: default-scheduler
terminationGracePeriodSeconds: 30
securityContext: {}
containers:
- resources: {}
terminationMessagePath: /dev/termination-log
name: rfsim5g-oai-nr-ue
livenessProbe:
exec:
command:
- /bin/bash -c "pgrep nr-uesoftmodem"
timeoutSeconds: 5
periodSeconds: 10
successThreshold: 1
failureThreshold: 5
env:
- name: DNN
value: oai
- name: FULL_IMSI
value: '208990200000002'
- name: FULL_KEY
value: fec86ba6eb707ed08905757b1bb44b8f
- name: NSSAI_SST
value: '1'
- name: OPC
value: c42449363bbad02b66d16bc975d77cc1
- name: RFSIMULATOR
value: 192.168.35.16
- name: USE_ADDITIONAL_OPTIONS
value: >-
--sa --rfsim -r 106 --numerology 1 -C 3619200000 --nokrnmod
--log_config.global_log_options level,nocolor,time
securityContext:
privileged: true
imagePullPolicy: IfNotPresent
volumeMounts:
- name: dev-tun
readOnly: true
mountPath: /dev/net/tun
terminationMessagePolicy: File
image: 'oaisoftwarealliance/oai-nr-ue:develop'
serviceAccount: oai-sa
volumes:
- name: dev-tun
hostPath:
path: /dev/net/tun
type: ''
dnsPolicy: ClusterFirst
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 25%
maxSurge: 25%
revisionHistoryLimit: 10
progressDeadlineSeconds: 600

View File

@@ -0,0 +1,81 @@
kind: Deployment
apiVersion: apps/v1
metadata:
annotations:
app.openshift.io/connects-to: '[{"apiVersion":"apps.openshift.io/v1","kind":"DeploymentConfig","name":"oai-du-03"},{"apiVersion":"apps/v1","kind":"DeploymentConfig","name":"oai-du-03"}]'
name: oai-nr-ue-03
namespace: infidel-test
labels:
app.kubernetes.io/part-of: trainee-03
spec:
replicas: 1
selector:
matchLabels:
app.kubernetes.io/part-of: trainee-03
template:
metadata:
labels:
app.kubernetes.io/part-of: trainee-03
creationTimestamp: null
annotations:
k8s.v1.cni.cncf.io/networks: 'oai-ue-du-03-net'
kompose.cmd: kompose convert -f ../docker-compose.yaml
spec:
restartPolicy: Always
serviceAccountName: oai-sa
schedulerName: default-scheduler
terminationGracePeriodSeconds: 30
securityContext: {}
containers:
- resources: {}
terminationMessagePath: /dev/termination-log
name: rfsim5g-oai-nr-ue
livenessProbe:
exec:
command:
- /bin/bash -c "pgrep nr-uesoftmodem"
timeoutSeconds: 5
periodSeconds: 10
successThreshold: 1
failureThreshold: 5
env:
- name: DNN
value: oai
- name: FULL_IMSI
value: '208990200000003'
- name: FULL_KEY
value: fec86ba6eb707ed08905757b1bb44b8f
- name: NSSAI_SST
value: '1'
- name: OPC
value: c42449363bbad02b66d16bc975d77cc1
- name: RFSIMULATOR
value: 192.168.35.19
- name: USE_ADDITIONAL_OPTIONS
value: >-
--sa --rfsim -r 106 --numerology 1 -C 3619200000 --nokrnmod
--log_config.global_log_options level,nocolor,time
securityContext:
privileged: true
imagePullPolicy: IfNotPresent
volumeMounts:
- name: dev-tun
readOnly: true
mountPath: /dev/net/tun
terminationMessagePolicy: File
image: 'oaisoftwarealliance/oai-nr-ue:develop'
serviceAccount: oai-sa
volumes:
- name: dev-tun
hostPath:
path: /dev/net/tun
type: ''
dnsPolicy: ClusterFirst
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 25%
maxSurge: 25%
revisionHistoryLimit: 10
progressDeadlineSeconds: 600