From 3695fa6b879ff66ccb48e7e161402157b4f8aa1e Mon Sep 17 00:00:00 2001 From: Allison Karlitskaya Date: Tue, 17 May 2022 11:34:28 +0200 Subject: [PATCH] services.setup: Pull Grafana image from docker.io 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. https://github.com/bitnami-labs/sealed-secrets/issues/822#issuecomment-1104116084 --- images/scripts/services.setup | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/scripts/services.setup b/images/scripts/services.setup index c3840f3a2e..b4e40f5074 100755 --- a/images/scripts/services.setup +++ b/images/scripts/services.setup @@ -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 @@ -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