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

Update install documents (again) #2519

Merged
merged 2 commits into from
May 12, 2017
Merged
Changes from 1 commit
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
6 changes: 3 additions & 3 deletions site/installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,15 +216,15 @@ Weave Cloud hosts the Scope UI for you, provides secure access control for your

Sign up for a [Weave Cloud account](https://cloud.weave.works/) and obtain a token. Replace `<token>` with your token by running this on the master node or on whatever machine that has `kubectl` configured to authenticate to your Kubernetes cluster:

kubectl apply --namespace kube-system -f "https://cloud.weave.works/k8s.yaml?service-token=<token>&k8s-version=$(kubectl version | base64 | tr -d '\n')"
kubectl apply --namespace kube-system -f "https://cloud.weave.works/k8s/scope.yaml?service-token=<token>&k8s-version=$(kubectl version | base64 | tr -d '\n')"

This comment was marked as abuse.

This comment was marked as abuse.


**SECURITY NOTE: This allows control of your Kubernetes cluster from Weave Cloud, which is a hosted service.**

### <a name="k8s-standalone"></a>Without Weave Cloud (run Scope in standalone mode)

The simplest way to get the latest release of Scope deployed onto a Kubernetes cluster is by running the following:

kubectl apply --namespace kube-system -f "https://cloud.weave.works/k8s.yaml?k8s-version=$(kubectl version | base64 | tr -d '\n')"
kubectl apply --namespace kube-system -f "https://cloud.weave.works/k8s/scope.yaml?k8s-version=$(kubectl version | base64 | tr -d '\n')"

This runs a recent Scope image from Dockerhub and launches a probe onto every node as well as a single Scope app. Once launched, Scope doesn’t require any other configuration.

Expand All @@ -236,7 +236,7 @@ Allowable parameters for the launcher URL:

To download and read the Scope manifest run:

curl --silent --location --remote-name https://cloud.weave.works/k8s/scope.yaml
curl --silent --location --remote-name "https://cloud.weave.works/k8s/scope.yaml?k8s-version=$(kubectl version | base64 | tr -d '\n')"

This comment was marked as abuse.

This comment was marked as abuse.

This comment was marked as abuse.


**Open Scope in Your Browser**

Expand Down