Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update default grafana version #1558

Merged
merged 1 commit into from
May 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ spec:
memory: 20Mi
env:
- name: RELATED_IMAGE_GRAFANA
value: "docker.io/grafana/grafana:9.5.17"
value: "docker.io/grafana/grafana:10.4.3"
- name: WATCH_NAMESPACE
valueFrom:
fieldRef:
Expand Down
2 changes: 1 addition & 1 deletion controllers/config/operator_constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package config
const (
// Grafana
GrafanaImage = "docker.io/grafana/grafana"
GrafanaVersion = "9.5.17"
GrafanaVersion = "10.4.3"

// Paths
GrafanaDataPath = "/var/lib/grafana"
Expand Down
8 changes: 4 additions & 4 deletions tests/e2e/example-test/00-assert.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ kind: Grafana
metadata:
name: grafana
spec:
version: 9.5.17
version: 10.4.3
status:
(wildcard('http://grafana-service.*:3000', adminUrl || '')): true
stage: complete
stageStatus: success
version: 9.5.17
version: 10.4.3
---
apiVersion: grafana.integreatly.org/v1beta1
kind: Grafana
Expand All @@ -18,12 +18,12 @@ status:
adminUrl: (join('',['http://grafana-internal-service.',$namespace,':3000']))
stage: complete
stageStatus: success
version: 9.5.17
version: 10.4.3
---
apiVersion: grafana.integreatly.org/v1beta1
kind: Grafana
metadata:
name: grafana-ten
name: grafana-versioned
status:
stage: complete
stageStatus: success
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/example-test/00-create-versioned-grafana.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: grafana.integreatly.org/v1beta1
kind: Grafana
metadata:
name: grafana-ten
name: grafana-versioned
labels:
dashboards: "grafana"
spec:
Expand Down
Loading