Skip to content

SMO and Non‐RT RIC deployment

alex-onf edited this page Aug 2, 2024 · 4 revisions

Prerequisites

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 then sudo apt install -y jq
  • 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
Clone this wiki locally