Skip to content

Commit ffccae1

Browse files
authored
prepare 5.7.0 (#1453)
1 parent c2dda99 commit ffccae1

File tree

7 files changed

+83
-5
lines changed

7 files changed

+83
-5
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.6.3
5+
VERSION ?= 5.7.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)

deploy/helm/grafana-operator/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ version: 0.1.3
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.6.3"
24+
appVersion: "v5.7.0"

deploy/helm/grafana-operator/README.md

+2-2
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.3](https://img.shields.io/badge/Version-0.1.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v5.6.3](https://img.shields.io/badge/AppVersion-v5.6.3-informational?style=flat-square)
10+
![Version: 0.1.3](https://img.shields.io/badge/Version-0.1.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v5.7.0](https://img.shields.io/badge/AppVersion-v5.7.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.6.3
17+
helm upgrade -i grafana-operator oci://ghcr.io/grafana/helm-charts/grafana-operator --version v5.7.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).

deploy/helm/grafana-operator/templates/rbac.yaml

+26
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,32 @@ rules:
9292
- patch
9393
- update
9494
- watch
95+
- apiGroups:
96+
- grafana.integreatly.org
97+
resources:
98+
- grafanaalertrulegroups
99+
verbs:
100+
- create
101+
- delete
102+
- get
103+
- list
104+
- patch
105+
- update
106+
- watch
107+
- apiGroups:
108+
- grafana.integreatly.org
109+
resources:
110+
- grafanaalertrulegroups/finalizers
111+
verbs:
112+
- update
113+
- apiGroups:
114+
- grafana.integreatly.org
115+
resources:
116+
- grafanaalertrulegroups/status
117+
verbs:
118+
- get
119+
- patch
120+
- update
95121
- apiGroups:
96122
- grafana.integreatly.org
97123
resources:

deploy/kustomize/overlays/cluster_scoped/rbac.yaml

+26
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,32 @@ rules:
7373
- patch
7474
- update
7575
- watch
76+
- apiGroups:
77+
- grafana.integreatly.org
78+
resources:
79+
- grafanaalertrulegroups
80+
verbs:
81+
- create
82+
- delete
83+
- get
84+
- list
85+
- patch
86+
- update
87+
- watch
88+
- apiGroups:
89+
- grafana.integreatly.org
90+
resources:
91+
- grafanaalertrulegroups/finalizers
92+
verbs:
93+
- update
94+
- apiGroups:
95+
- grafana.integreatly.org
96+
resources:
97+
- grafanaalertrulegroups/status
98+
verbs:
99+
- get
100+
- patch
101+
- update
76102
- apiGroups:
77103
- grafana.integreatly.org
78104
resources:

deploy/kustomize/overlays/namespace_scoped/rbac.yaml

+26
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,32 @@ rules:
7474
- patch
7575
- update
7676
- watch
77+
- apiGroups:
78+
- grafana.integreatly.org
79+
resources:
80+
- grafanaalertrulegroups
81+
verbs:
82+
- create
83+
- delete
84+
- get
85+
- list
86+
- patch
87+
- update
88+
- watch
89+
- apiGroups:
90+
- grafana.integreatly.org
91+
resources:
92+
- grafanaalertrulegroups/finalizers
93+
verbs:
94+
- update
95+
- apiGroups:
96+
- grafana.integreatly.org
97+
resources:
98+
- grafanaalertrulegroups/status
99+
verbs:
100+
- get
101+
- patch
102+
- update
77103
- apiGroups:
78104
- grafana.integreatly.org
79105
resources:

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.6.3"
62+
version = "v5.7.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)