forked from o-ran-sc/nonrtric-plt-ranpm
-
Notifications
You must be signed in to change notification settings - Fork 6
SMO and Non‐RT RIC deployment
alex-onf edited this page Aug 2, 2024
·
4 revisions
These tools must be installed (summary from the ranpm/install/README.md):
-
kubernetes
-
helm3
-
bash
-
cmd 'envsubst' must be installed (check by cmd: 'type envsubst' )
-
cmd 'jq' must be installed (check by cmd: 'type jq' )
- can be installed with
sudo apt update
and thensudo apt install -y jq
- can be installed with
-
keytool
-
openssl
Istio then needs to be installed for k8s. Details here, but in summary:
helm repo add istio https://istio-release.storage.googleapis.com/charts
helm repo update
kubectl create namespace istio-system
helm install istio-base istio/base -n istio-system --set defaultRevision=default
helm ls -n istio-system
helm install istiod istio/istiod -n istio-system --wait
helm ls -n istio-system
helm status istiod -n istio-system
kubectl get deployments -n istio-system --output wide