mirror of https://github.com/istio/istio.io.git
additional permission steps in openshift for running applications (#542)
This commit is contained in:
parent
9536e59bcc
commit
cb2bc20a4c
|
@ -52,6 +52,11 @@ If you wish to enable [transparent injection of sidecar]({{home}}/docs/setup/kub
|
|||
```bash
|
||||
oc adm policy add-scc-to-user anyuid -z istio-ingress-service-account -n istio-system
|
||||
oc adm policy add-scc-to-user anyuid -z istio-egress-service-account -n istio-system
|
||||
oc adm policy add-scc-to-user anyuid -z default -n istio-system
|
||||
```
|
||||
Service account that runs application pods need privileged security context constraints as part of sidecar injection.
|
||||
```bash
|
||||
oc adm policy add-scc-to-user privileged -z default -n <target-namespace>
|
||||
```
|
||||
|
||||
* Install or upgrade the Kubernetes CLI
|
||||
|
|
Loading…
Reference in New Issue