Commit b6c2dd78 authored by Robert Schmidt's avatar Robert Schmidt

Update README for OpenShift deployments using helm

parent 7d20568c
...@@ -12,6 +12,8 @@ ...@@ -12,6 +12,8 @@
</tr> </tr>
</table> </table>
[[_TOC_]]
# 1. Introduction # 1. Introduction
## General ## General
...@@ -119,13 +121,14 @@ The `<image>` could be `oai-gnb`, and the `<tag>` `ci-temp`. ...@@ -119,13 +121,14 @@ The `<image>` could be `oai-gnb`, and the `<tag>` `ci-temp`.
# 6. Deployment using HELM Charts # 6. Deployment using HELM Charts
**CAUTION: even more experimental.** Helm charts are located under `charts`. Assuming that the image is in the image
registry, the physims could be deployed as shown in the following steps:
Helm charts are located in another repository:
```bash ```bash
git clone https://github.com/OPENAIRINTERFACE/openair-k8s.git grep -rl OAICICD_PROJECT ./charts/ | xargs sed -i -e "s#OAICICD_PROJECT#oaicicd-ran#" # select the correct project
cd openair-k8s sed -i -e "s#TAG#ci-temp#g" ./charts/physims/values.yaml # select the correct tag
git checkout helm-deployment-S6a-S1C-S1U-in-network-18-with-enb helm install physim ./charts/physims/ # deploy
helm install mme /path-to-your-cloned/openair-k8s/charts/oai-mme/ oc get pods # get the list of deployed containers
oc logs <pod> # inspect the logs of a pod
helm uninstall physim # undeploy
``` ```
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment