mirror of https://github.com/knative/docs.git
9 lines
412 B
Bash
9 lines
412 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
oc adm policy add-scc-to-user anyuid -z build-controller -n knative-build
|
|
oc adm policy add-scc-to-user anyuid -z controller -n knative-serving
|
|
oc adm policy add-scc-to-user anyuid -z autoscaler -n knative-serving
|
|
oc adm policy add-cluster-role-to-user cluster-admin -z build-controller -n knative-build
|
|
oc adm policy add-cluster-role-to-user cluster-admin -z controller -n knative-serving |