Skip to content

Commit

Permalink
Fix installation instructions in guides (#770)
Browse files Browse the repository at this point in the history
  • Loading branch information
tamalsaha committed Dec 20, 2017
1 parent 60c7c31 commit 0c5f4e5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
4 changes: 2 additions & 2 deletions docs/guides/certificate/google-cloud.md
Expand Up @@ -17,15 +17,15 @@ Deploy Voyager operator following instructions [here](/docs/install.md).
```console
# install without RBAC
curl -fsSL https://raw.githubusercontent.com/appscode/voyager/5.0.0-rc.7/hack/deploy/voyager.sh \
| bash -s -- gke
| bash -s -- --provider=gke
```

If you are trying this on a RBAC enabled cluster, pass the flag `--rbac` to installer script.

```console
# install without RBAC
curl -fsSL https://raw.githubusercontent.com/appscode/voyager/5.0.0-rc.7/hack/deploy/voyager.sh \
| bash -s -- gke --rbac
| bash -s -- --provider=gke --rbac
```

## Setup Google Cloud DNS Zone
Expand Down
4 changes: 2 additions & 2 deletions docs/guides/certificate/http.md
Expand Up @@ -7,15 +7,15 @@ Deploy Voyager operator following instructions [here](/docs/install.md).
```console
# install without RBAC
curl -fsSL https://raw.githubusercontent.com/appscode/voyager/5.0.0-rc.7/hack/deploy/voyager.sh \
| bash -s -- gke
| bash -s -- --provider=gke
```

If you are trying this on a RBAC enabled cluster, pass the flag `--rbac` to installer script.

```console
# install without RBAC
curl -fsSL https://raw.githubusercontent.com/appscode/voyager/5.0.0-rc.7/hack/deploy/voyager.sh \
| bash -s -- gke --rbac
| bash -s -- --provider=gke --rbac
```

## Create Ingress
Expand Down
8 changes: 2 additions & 6 deletions docs/guides/certificate/route53.md
Expand Up @@ -20,19 +20,15 @@ Deploy Voyager operator following instructions [here](/docs/install.md).
```console
# install without RBAC
curl -fsSL https://raw.githubusercontent.com/appscode/voyager/5.0.0-rc.7/hack/deploy/voyager.sh \
| bash -s -- aws

# run on master
kubectl patch deploy voyager-operator -n kube-system \
--patch "$(curl -fsSL https://raw.githubusercontent.com/appscode/voyager/5.0.0-rc.7/hack/deploy/run-on-master.yaml)"
| bash -s -- --provider=aws --run-on-master
```

If you are trying this on a RBAC enabled cluster, pass the flag `--rbac` to installer script.

```console
# install without RBAC
curl -fsSL https://raw.githubusercontent.com/appscode/voyager/5.0.0-rc.7/hack/deploy/voyager.sh \
| bash -s -- aws --rbac
| bash -s -- --provider=aws --run-on-master --rbac
```

## Setup Route53 Hosted Zone
Expand Down
1 change: 1 addition & 0 deletions hack/deploy/voyager.sh
Expand Up @@ -127,6 +127,7 @@ case "$VOYAGER_CLOUD_PROVIDER" in
esac

env | sort | grep VOYAGER*
echo ""

if [ -z "$VOYAGER_TEMPLATE_CONFIGMAP" ]; then
curl -fsSL https://raw.githubusercontent.com/appscode/voyager/5.0.0-rc.7/hack/deploy/operator.yaml | envsubst | kubectl apply -f -
Expand Down

0 comments on commit 0c5f4e5

Please sign in to comment.