Skip to content
This repository has been archived by the owner on Nov 1, 2022. It is now read-only.

Commit

Permalink
Use correct Helm repository domain in docs
Browse files Browse the repository at this point in the history
As it has changed after our move to the `fluxcd` organization, and
the old URL no longer works.
  • Loading branch information
hiddeco committed Jul 15, 2019
1 parent 8bf34a3 commit 371807a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions chart/flux/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ You will have a fully working Flux installation deploying workloads to your clus
Add the weaveworks repo:

```sh
helm repo add weaveworks https://weaveworks.github.io/flux
helm repo add fluxcd https://fluxcd.github.io/flux
```

#### To install the chart with the release name `flux`
Expand All @@ -58,7 +58,7 @@ Replace `weaveworks/flux-get-started` with your own git repository and run helm
$ helm install --name flux \
--set git.url=git@github.com:weaveworks/flux-get-started \
--namespace flux \
weaveworks/flux
fluxcd/flux
```

#### To connect Flux to a Weave Cloud instance:
Expand All @@ -68,7 +68,7 @@ helm install --name flux \
--set git.url=git@github.com:weaveworks/flux-get-started \
--set token=YOUR_WEAVE_CLOUD_SERVICE_TOKEN \
--namespace flux \
weaveworks/flux
fluxcd/flux
```

#### To install Flux with the Helm operator:
Expand All @@ -87,7 +87,7 @@ $ helm install --name flux \
--set helmOperator.create=true \
--set helmOperator.createCRD=false \
--namespace flux \
weaveworks/flux
fluxcd/flux
```

#### To install Flux with a private git host:
Expand Down
6 changes: 3 additions & 3 deletions site/annotations-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,13 @@ Now you can take care of the actual installation. First add the Flux
repository of Weaveworks:

```sh
helm repo add weaveworks https://weaveworks.github.io/flux
helm repo add fluxcd https://fluxcd.github.io/flux
```

Apply the Helm Release CRD:

```sh
kubectl apply -f https://raw.githubusercontent.com/weaveworks/flux/master/deploy-helm/flux-helm-release-crd.yaml
kubectl apply -f https://raw.githubusercontent.com/fluxcd/flux/master/deploy-helm/flux-helm-release-crd.yaml
```

Install Flux and its Helm Operator by specifying your fork URL. Just
Expand All @@ -93,7 +93,7 @@ helm upgrade -i Flux \
--set helmOperator.createCRD=false \
--set git.url=git@github.com:YOURUSER/flux-get-started \
--namespace default \
weaveworks/flux
fluxcd/flux
```

> **Note:** In this tutorial we keep things simple, so we deploy Flux into
Expand Down
4 changes: 2 additions & 2 deletions site/helm-operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ kubectl create secret tls helm-client --cert=tls/flux-helm-operator.pem --key=./
Deploy Flux with Helm;

```bash
helm repo add weaveworks https://weaveworks.github.io/flux
helm repo add fluxcd https://fluxcd.github.io/flux

helm upgrade --install \
--set helmOperator.create=true \
Expand All @@ -194,7 +194,7 @@ helm upgrade --install \
--set helmOperator.tls.secretName=helm-client \
--set helmOperator.tls.caContent="$(cat ./tls/ca.pem)" \
flux \
weaveworks/flux
fluxcd/flux
```
> **Note:**
> - include --tls flags for `helm` as in the `helm ls` example, if talking to a tiller with TLS
Expand Down

0 comments on commit 371807a

Please sign in to comment.