Skip to content

Commit d738c57

Browse files
authored
Add helm chart repo to helm docs (#784)
Helm docs do not mention the chart repo, which will be useful for anyone who doesnt want to download the source code or is using argocd/terraform
1 parent 304fca8 commit d738c57

File tree

1 file changed

+9
-2
lines changed
  • docs/content/docs/operations

1 file changed

+9
-2
lines changed

Diff for: docs/content/docs/operations/helm.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,20 @@ under the License.
2626

2727
# Helm installation
2828

29-
The operator installation is managed by a helm chart. To install run:
29+
The operator installation is managed by a helm chart. To install with the chart bundled in the source code run:
3030

3131
```
3232
helm install flink-kubernetes-operator helm/flink-kubernetes-operator
3333
```
3434

35-
Alternatively to install the operator (and also the helm chart) to a specific namespace:
35+
To install from our Helm Chart Reporsitory run:
36+
37+
```
38+
helm repo add flink-operator-repo https://downloads.apache.org/flink/flink-kubernetes-operator-<OPERATOR-VERSION>/
39+
helm install flink-kubernetes-operator flink-operator-repo/flink-kubernetes-operator
40+
```
41+
42+
Alternatively to install the operator (and also the helm chart) to a specific namespace add the arguments `--namespace` and `--create-namespace` ex:
3643

3744
```
3845
helm install flink-kubernetes-operator helm/flink-kubernetes-operator --namespace flink --create-namespace

0 commit comments

Comments
 (0)