Skip to content

Commit

Permalink
fix grafana CrashLoopBackoff on image 5.0.3 (#646)
Browse files Browse the repository at this point in the history
this is a known issue with grafana in k8s. grafana/grafana:5.0.4 was just released today. update the repo from 5.0.3 to 5.0.4
fixed issues #582

Signed-off-by: Deshi Xiao <[email protected]>
  • Loading branch information
xiaods authored and siggy committed Mar 29, 2018
1 parent 6e43575 commit 732f3c1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cli/cmd/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func validateAndBuildConfig() (*installConfig, error) {
ControllerImage: fmt.Sprintf("%s/controller:%s", dockerRegistry, conduitVersion),
WebImage: fmt.Sprintf("%s/web:%s", dockerRegistry, conduitVersion),
PrometheusImage: "prom/prometheus:v2.1.0",
GrafanaImage: "grafana/grafana:5.0.3",
GrafanaImage: "grafana/grafana:5.0.4",
// TODO: these dashboards assume we're running in the "conduit" namespace
VizDashboard: install.Viz,
DeploymentDashboard: install.Deployment,
Expand Down
2 changes: 1 addition & 1 deletion cli/cmd/testdata/install_default.golden
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ spec:
conduit.io/proxy-deployment: grafana
spec:
containers:
- image: grafana/grafana:5.0.3
- image: grafana/grafana:5.0.4
imagePullPolicy: IfNotPresent
name: grafana
ports:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ services:
- --storage.tsdb.retention=6h

grafana:
image: grafana/grafana:5.0.3
image: grafana/grafana:5.0.4
ports:
- 3000:3000
volumes:
Expand Down

0 comments on commit 732f3c1

Please sign in to comment.