Skip to content

Commit fb7788e

Browse files
authored
chore: release 5.17.0 (#1891)
1 parent 06be4b3 commit fb7788e

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

CODEOWNERS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @NissesSenap @weisdd @ishanjainn @theSuess @hubeadmin @pb82
1+
* @NissesSenap @weisdd @ishanjainn @theSuess @hubeadmin @pb82 @Baarsgaard

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Current Operator version
2-
VERSION ?= 5.15.1
2+
VERSION ?= 5.17.0
33

44
# BUNDLE_GEN_FLAGS are the flags passed to the operator-sdk generate bundle command
55
BUNDLE_GEN_FLAGS ?= -q --overwrite --version $(VERSION) $(BUNDLE_METADATA_OPTS)
@@ -420,6 +420,6 @@ prep-release: yq
420420
$(YQ) -i '.appVersion="v$(VERSION)"' deploy/helm/grafana-operator/Chart.yaml
421421
$(YQ) -i '.params.version="v$(VERSION)"' hugo/config.yaml
422422
sed -i 's/--version v5.*/--version v$(VERSION)/g' README.md
423-
sed -i 's/VERSION ?= 5.*/VERSION ?= $(VERSION)/g' Makefile
423+
sed -i 's/^VERSION ?= 5.*/VERSION ?= $(VERSION)/g' Makefile
424424
$(YQ) -i '.images[0].newTag="v$(VERSION)"' deploy/kustomize/base/kustomization.yaml
425425
make helm/docs

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

3232
**Option 2: Kustomize & More**

deploy/helm/grafana-operator/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ 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: v5.16.0
16-
appVersion: "v5.16.0"
15+
version: v5.17.0
16+
appVersion: "v5.17.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-
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v5.16.0](https://img.shields.io/badge/AppVersion-v5.16.0-informational?style=flat-square)
10+
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v5.17.0](https://img.shields.io/badge/AppVersion-v5.17.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.16.0
17+
helm upgrade -i grafana-operator oci://ghcr.io/grafana/helm-charts/grafana-operator --version v5.17.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.16.0"
33+
version = "v5.17.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.16.0/crds.yaml
43+
kubectl apply --server-side --force-conflicts -f https://github.com/grafana/grafana-operator/releases/download/v5.17.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.

deploy/kustomize/base/kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ patches:
1515
value: grafana-operator-permissions
1616
images:
1717
- name: ghcr.io/grafana/grafana-operator
18-
newTag: v5.16.0
18+
newTag: v5.17.0

hugo/config.yaml

+1-1
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.16.0
27+
version: v5.17.0
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)