Skip to content

Commit 084476e

Browse files
authored
docs: release 5.22.2 (#2588)
1 parent d706798 commit 084476e

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ include Toolchain.mk
33
.DEFAULT_GOAL := all
44

55
# Current Operator version
6-
VERSION ?= 5.22.1
6+
VERSION ?= 5.22.2
77

88
# BUNDLE_GEN_FLAGS are the flags passed to the operator-sdk generate bundle command
99
BUNDLE_GEN_FLAGS ?= -q --overwrite --version $(VERSION) $(BUNDLE_METADATA_OPTS)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Whether you’re running one Grafana instance or many, the Grafana Operator simp
2626
Deploy the Grafana Operator easily in your cluster using Helm:
2727

2828
```bash
29-
helm upgrade -i grafana-operator oci://ghcr.io/grafana/helm-charts/grafana-operator --version 5.22.1
29+
helm upgrade -i grafana-operator oci://ghcr.io/grafana/helm-charts/grafana-operator --version 5.22.2
3030
```
3131

3232
**Option 2: Kustomize & More**

deploy/helm/grafana-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ description: Helm chart for the Grafana Operator
1212
type: application
1313
# We keep the version and appVersion in sync as most updates also include
1414
# changes to the CRDs which are bundled with the helm resources
15-
version: 5.22.1
16-
appVersion: "v5.22.1"
15+
version: 5.22.2
16+
appVersion: "v5.22.2"
1717
dependencies:
1818
- name: crds
1919
version: "0.0.*"

deploy/helm/grafana-operator/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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.22.1](https://img.shields.io/badge/AppVersion-v5.22.1-informational?style=flat-square)
10+
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v5.22.2](https://img.shields.io/badge/AppVersion-v5.22.2-informational?style=flat-square)
1111

1212
## Installation
1313

1414
This 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 5.22.1
17+
helm upgrade -i grafana-operator oci://ghcr.io/grafana/helm-charts/grafana-operator --version 5.22.2
1818
```
1919

2020
Sadly 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 = "5.22.1"
33+
version = "5.22.2"
3434
}
3535
```
3636

@@ -43,7 +43,7 @@ This can result in the operator misbehaving when a release contains updates to t
4343
To 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.22.1/crds.yaml
46+
kubectl apply --server-side --force-conflicts -f https://github.com/grafana/grafana-operator/releases/download/v5.22.2/crds.yaml
4747
```
4848

4949
The `--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

5757
Use `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 5.22.1
59+
helm upgrade -i --take-ownership --set crds.immutable=false grafana-operator oci://ghcr.io/grafana/helm-charts/grafana-operator --version 5.22.2
6060
```
6161

6262
Both types of CRDs are protected on the Helm chart uninstall to avoid cascading deletion.

deploy/kustomize/base/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ patches:
1717
value: grafana-operator-permissions
1818
images:
1919
- name: ghcr.io/grafana/grafana-operator
20-
newTag: v5.22.1
20+
newTag: v5.22.2

hugo/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ params:
2424
copyright: Grafana Operator Team
2525
version_menu: Releases
2626
archived_version: false
27-
version: v5.22.1
27+
version: v5.22.2
2828
url_latest_version: https://example.com
2929
github_repo: https://github.com/grafana/grafana-operator
3030
github_branch: master

0 commit comments

Comments
 (0)