Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

FIXME: Update the result table when o-du o-ru rapps are included

This wiki describes how to deploy the NONRTRIC components within Kubernetes cluster.

...

Code Block
languagebash
titleEditor override file
nonrtric:
  installPms: true
  installA1controller: true
  installA1simulator: true
  installControlpanel: true
  installInformationservice: true
  installRappcatalogueservice: true
  installNonrtricgateway: true
  installKong: false
  installDmaapadapterservice: true
  installDmaapmediatorservice: true
  installHelmmanager: true
  installOruclosedlooprecovery: true
  installOdusliceassurance: true
  volume1:
    # Set the size to 0 if you do not need the volume (if you are using Dynamic Volume Provisioning)
    size: 2Gi
    storageClassName: pms-storage
  volume2:
     # Set the size to 0 if you do not need the volume (if you are using Dynamic Volume Provisioning)
    size: 2Gi
    storageClassName: ics-storage
  volume3:
    size: 1Gi
    storageClassName: helmmanager-storage

...
...
...

...

Code Block
languagebash
themeMidnight
titleGet Pods
>sudo kubectl get po -n nonrtric get
NAME pod 

NAME                                   READY   STATUS    RESTARTS   AGE
a1-sim-osc-0                             1/1     Running   0          61m12m
a1-sim-osc-1                             1/1     Running   0          51m10m
a1-sim-std-0                             1/1     Running   0          61m12m
a1-sim-std-1                             1/1     Running   0          51m10m
a1-sim-std2-0                            1/1     Running   0          61m12m
a1-sim-std2-1                            1/1     Running   0          51m3m57s
a1controller-64c5b7fc56-rkmx2hjx6l            1/1     Running   0          61m12m
controlpanel-6fb697f9496bf7c4bf79-rrvnqm6hgl            1/1     Running   0          61m12m
db-76d79cd769-q84pcmngm4                      1/1     Running   0          61m12m
dmaapadapterservice-0                    1/1     Running   0          61m12m
dmaapmediatorservice-0                   1/1     Running   0          61m12m
helmmanager-0                            1/1     Running   0          61m12m
informationservice-0                     1/1     Running   0          61m
nonrtricgateway-8c87c678d-8nl8212m
nonrtricgateway-677988d5c7-rfm88         1/1     Running   0          12m
odusliceassurance-cd5b6f568-q89r5        1/1     Running   0          12m
oruclosedlooprecovery-568f867b45-b6zld   1/1     Running   0          61m12m
policymanagementservice-0                1/1     Running   0          61m12m
rappcatalogueservice-f77f47cb9687d69756c-85hjqlvwrg    1/1     Running   0          61m12m

Un-installation

There is a script that uninstalls installs the NonRT RIC components. It is simply run like this:

...