@@ -7,14 +7,14 @@ linkTitle: "Helm installation"
77
88[ grafana-operator] ( https://github.com/grafana/grafana-operator ) for Kubernetes to manage Grafana instances and grafana resources.
99
10- ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: v5.19 .0] ( https://img.shields.io/badge/AppVersion-v5.19 .0-informational?style=flat-square )
10+ ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: v5.20 .0] ( https://img.shields.io/badge/AppVersion-v5.20 .0-informational?style=flat-square )
1111
1212## Installation
1313
1414This is a OCI helm chart, helm started support OCI in version 3.8.0.
1515
1616``` shell
17- helm upgrade -i grafana-operator oci://ghcr.io/grafana/helm-charts/grafana-operator --version v5.19 .0
17+ helm upgrade -i grafana-operator oci://ghcr.io/grafana/helm-charts/grafana-operator --version v5.20 .0
1818```
1919
2020Sadly helm OCI charts currently don't support searching for available versions of a helm [ oci registry] ( https://github.com/helm/helm/issues/11000 ) .
@@ -30,7 +30,7 @@ resource "helm_release" "grafana_kubernetes_operator" {
3030 repository = "oci://ghcr.io/grafana/helm-charts"
3131 chart = "grafana-operator"
3232 verify = false
33- version = "v5.19 .0"
33+ version = "v5.20 .0"
3434}
3535```
3636
@@ -43,7 +43,7 @@ This can result in the operator misbehaving when a release contains updates to t
4343To avoid issues due to outdated or missing definitions, run the following command before updating an existing installation:
4444
4545``` shell
46- kubectl apply --server-side --force-conflicts -f https://github.com/grafana/grafana-operator/releases/download/v5.19 .0/crds.yaml
46+ kubectl apply --server-side --force-conflicts -f https://github.com/grafana/grafana-operator/releases/download/v5.20 .0/crds.yaml
4747```
4848
4949The ` --server-side ` and ` --force-conflict ` flags are required to avoid running into issues with the ` kubectl.kubernetes.io/last-applied-configuration ` annotation.
@@ -56,7 +56,7 @@ without manual `kubectl apply` step required, `--set crds.immutable=false` on `h
5656
5757Use ` helm upgrade -i --take-ownership ` when switching to mutable CRDs for the first time only:
5858``` shell
59- helm upgrade -i --take-ownership --set crds.immutable=false grafana-operator oci://ghcr.io/grafana/helm-charts/grafana-operator --version v5.19 .0
59+ helm upgrade -i --take-ownership --set crds.immutable=false grafana-operator oci://ghcr.io/grafana/helm-charts/grafana-operator --version v5.20 .0
6060```
6161
6262Both types of CRDs are protected on the Helm chart uninstall to avoid cascading deletion.
0 commit comments