Skip to content

Commit

Permalink
services.setup: Pull Grafana image from docker.io
Browse files Browse the repository at this point in the history
Bitnami recently stopped publishing their images on quay.io after
becoming a verified publisher on Dockerhub.

Verified publishers are not subject to rate limitations, allowing us to
pull their Grafana the image from docker.io now.

bitnami-labs/sealed-secrets#822 (comment)
  • Loading branch information
allisonkarlitskaya authored and mvollmer committed May 24, 2022
1 parent 23263ac commit 4d33376
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions images/scripts/services.setup
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ podman run -d --rm --name grafana -p 3000:3000 \
-e GF_SECURITY_ADMIN_PASSWORD=foobar \
-e GF_INSTALL_PLUGINS="redis-datasource,performancecopilot-pcp-app=https://github.com/performancecopilot/grafana-pcp/releases/download/${latest_ver}/performancecopilot-pcp-app-${latest_ver#v}.zip" \
-e GF_PLUGINS_ALLOW_LOADING_UNSIGNED_PLUGINS="performancecopilot-pcp-app,redis-datasource" \
quay.io/bitnami/grafana
docker.io/bitnami/grafana

# wait until set up completed
until curl http://localhost:3000; do sleep 1; done
Expand All @@ -210,7 +210,7 @@ podman run -d --rm --name grafana -p 3000:3000 \
-v grafana-data-plugins:/opt/bitnami/grafana/data/plugins \
-e GF_SECURITY_ADMIN_PASSWORD=foobar \
-e GF_PLUGINS_ALLOW_LOADING_UNSIGNED_PLUGINS="performancecopilot-pcp-app,redis-datasource" \
quay.io/bitnami/grafana
docker.io/bitnami/grafana
EOF
chmod 755 /root/run-grafana

Expand Down

0 comments on commit 4d33376

Please sign in to comment.