Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

documentation fix: project for openshift installation #3128

Merged
merged 1 commit into from
Apr 5, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions site/installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ To install Weave Scope on OpenShift, you first need to login as `system:admin` u

Next, create a dedicated project for Weave Scope then apply policy changes needed to run Weave Scope:

oc new-project weave-scope
oc new-project weave
# Scope probe pods need full access to Kubernetes API via 'weave-scope' service account
oc adm policy add-cluster-role-to-user cluster-admin -z weave-scope

This comment was marked as abuse.

This comment was marked as abuse.

This comment was marked as abuse.

# Scope probe pods also need to run as priviliaged containers, so grant 'priviliged' Security Context Constrains (SCC) for 'weave-scope' service account
Expand All @@ -185,7 +185,7 @@ Next, create a dedicated project for Weave Scope then apply policy changes neede
oc adm policy add-scc-to-user anyuid -z default

The installation method for Scope on OpenShift is very similar to the one described [above](#k8s) for Kubernetes, but instead of `kubectl apply ...` you need to use
`oc apply ...` and install it into the namespace of the `weave-scope` project you have just created, and not the `weave` namespace, i.e.:
`oc apply ...` and install it into the namespace of the `weave` project you have just created, and not the `weave` namespace, i.e.:

oc apply -f 'https://cloud.weave.works/k8s/scope.yaml'

Expand Down