Skip to content

Commit 824b4f4

Browse files
authoredAug 7, 2024··
Merge pull request #1634 from grafana/chore/bump-version-5.12
chore: bump version 5.12
2 parents e03426a + fa23745 commit 824b4f4

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed
 

‎Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: this section almost matches outputs out kubebuilder v3.7.0
33
###
44
# Current Operator version
5-
VERSION ?= 5.11.0
5+
VERSION ?= 5.12.0
66

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

‎README.md

+1-1
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 v5.11.0
29+
helm upgrade -i grafana-operator oci://ghcr.io/grafana/helm-charts/grafana-operator --version v5.12.0
3030
```
3131

3232
**Option 2: Kustomize & More**

‎deploy/helm/grafana-operator/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.1.4
18+
version: 0.2.0
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "v5.11.0"
24+
appVersion: "v5.12.0"

‎deploy/helm/grafana-operator/README.md

+4-4
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-
![Version: 0.1.4](https://img.shields.io/badge/Version-0.1.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v5.11.0](https://img.shields.io/badge/AppVersion-v5.11.0-informational?style=flat-square)
10+
![Version: 0.2.0](https://img.shields.io/badge/Version-0.2.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v5.12.0](https://img.shields.io/badge/AppVersion-v5.12.0-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 v5.11.0
17+
helm upgrade -i grafana-operator oci://ghcr.io/grafana/helm-charts/grafana-operator --version v5.12.0
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 = "v5.11.0"
33+
version = "v5.12.0"
3434
}
3535
```
3636

@@ -40,7 +40,7 @@ Helm does not provide functionality to update custom resource definitions. This
4040
To avoid issues due to outdated or missing definitions, run the following command before updating an existing installation:
4141

4242
```shell
43-
kubectl apply --server-side --force-conflicts -f https://github.com/grafana/grafana-operator/releases/download/v5.11.0/crds.yaml
43+
kubectl apply --server-side --force-conflicts -f https://github.com/grafana/grafana-operator/releases/download/v5.12.0/crds.yaml
4444
```
4545

4646
The `--server-side` and `--force-conflict` flags are required to avoid running into issues with the `kubectl.kubernetes.io/last-applied-configuration` annotation.

‎hugo/config.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ archived_version = false
5959
# The version number for the version of the docs represented in this doc set.
6060
# Used in the "version-banner" partial to display a version number for the
6161
# current doc set.
62-
version = "v5.11.0"
62+
version = "v5.12.0"
6363

6464
# A link to latest version of the docs. Used in the "version-banner" partial to
6565
# point people to the main doc site.

0 commit comments

Comments
 (0)
Please sign in to comment.