Skip to content

Deploying Near‐Real‐Time RIC OSC

Angelo Feraudo edited this page Dec 3, 2025 · 9 revisions

Prerequisite

Be sure to follow the guide provided here

Deploying nearRT RIC OSC release J in minikube

Note: This guide is valid for any k8s deployment

Clone the repository

git clone https://github.com/o-ran-sc/ric-plt-ric-dep.git
cd ric-plt-ric-dep
git checkout j-release

Install chartmuseum and common charts

# be sure to be in the bin folder
cd bin
# This script will create a docker container running chartmuseum and will create a repo with common charts used to build the ric
./install_common_templates_to_helm.sh 

Map docker images with those used by minikube

eval $(minikube -p minikube docker-env)

❗ Note: to revert this you can use: eval $(minikube docker-env -u)

Deploy the near-RT RIC using the install script

./install -f ../RECIPE_EXAMPLE/example_recipe_oran_j_release.yaml # change release based on your requirements

By running kubectl get pods -n ricplt you should have the following output image

Removing nearRT RIC from deployment

cd bin
./uninstall

Clone this wiki locally