1
0
mirror of synced 2026-02-13 21:16:57 +00:00

Docs: fix gotk create helmrelease examples

Signed-off-by: Scott Rigby <scott@r6by.com>
This commit is contained in:
Scott Rigby
2020-09-03 10:38:44 -04:00
committed by Hidde Beydals
parent dfb0a40293
commit 44a3cf86d3
2 changed files with 9 additions and 9 deletions

View File

@@ -324,9 +324,9 @@ gotk create helmrelease sealed-secrets \
--interval=1h \ --interval=1h \
--release-name=sealed-secrets \ --release-name=sealed-secrets \
--target-namespace=gitops-system \ --target-namespace=gitops-system \
--source=stable \ --source=HelmRepository/stable \
--chart-name=sealed-secrets \ --chart=sealed-secrets \
--chart-version="^1.10.0" --chart-version="1.10.x"
``` ```
### Monitoring with Prometheus and Grafana ### Monitoring with Prometheus and Grafana

View File

@@ -50,13 +50,13 @@ gotk create helmrelease sealed-secrets \
--interval=1h \ --interval=1h \
--release-name=sealed-secrets \ --release-name=sealed-secrets \
--target-namespace=gitops-system \ --target-namespace=gitops-system \
--source=stable \ --source=HelmRepository/stable \
--chart-name=sealed-secrets \ --chart=sealed-secrets \
--chart-version="^1.10.0" --chart-version="1.10.x"
``` ```
With chart version `^1.10.0` we configure helm-controller to automatically upgrade the release With chart version `1.10.x` we configure helm-controller to automatically upgrade the release
when a new chart version is fetch by source-controller. when a new chart patch version is fetched by source-controller.
At startup, the sealed-secrets controller generates a 4096-bit RSA key pair and At startup, the sealed-secrets controller generates a 4096-bit RSA key pair and
persists the private and public keys as Kubernetes secrets in the `gitops-system` namespace. persists the private and public keys as Kubernetes secrets in the `gitops-system` namespace.