Update README.md

This commit is contained in:
Zbigniew Zabost
2021-06-22 09:31:06 +02:00
committed by GitHub
parent f1becd3bd0
commit 165e292328

View File

@@ -4,6 +4,8 @@ See the official [documentation](https://docs.instana.io/quick_start/agent_setup
# Robot Shop Deployment
## OCP 3.x
For OpenShift run the `setup.sh` script to create the project and set the extra permissions.
Use the Helm chart for Kubernetes to install Stan's Robot Shop. To install on Minishift.
@@ -29,5 +31,17 @@ web NodePort 172.30.180.253 <none> 8080:31147/TCP 4m
Use the IP and the node port to form the URL `http://192.168.99.106:31147/`
## OCP 4.x
For Openshift cluster in version 4.x follow these steps:
```
export KUBECONFIG=/path/to/oc/cluster/dir/auth/kubeconfig
oc adm new-project robot-shop
oc adm policy add-scc-to-user anyuid -z default -n robot-shop
cd robot-shop/K8s
helm install robot-shop --set openshift=true -n robot-shop helm
```