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

Add note about targeting a specific Helm version for the Helm operator #2830

Merged
merged 1 commit into from
Feb 12, 2020
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: 3 additions & 1 deletion docs/tutorials/get-started-helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,15 @@ In this next step you install Flux using `helm`. Simply
```sh
helm upgrade -i flux fluxcd/flux \
--set [email protected]:YOURUSER/flux-get-started \
--namespace flux
--namespace flux

helm upgrade -i helm-operator fluxcd/helm-operator \
--set git.ssh.secretName=flux-git-deploy \
--namespace flux
```

> **Note:** By default the helm-operator chart will install with support for both Helm v2 (which requires Tiller) and v3. You can target specific versions by setting the `helm.versions` value, e.g. `--set helm.versions=v3`.

- Using a private git server:

When deploying from a private repo, the known_hosts of the git server needs
Expand Down