From c015bff784c43e37948b0fd1d7b30e00232e4185 Mon Sep 17 00:00:00 2001 From: "grafana-plugins-platform-bot[bot]" <144369747+grafana-plugins-platform-bot[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 08:16:33 +0000 Subject: [PATCH] chore: update configuration to latest version (#446) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- examples/app-basic/.config/.cprc.json | 2 +- examples/app-basic/.config/Dockerfile | 3 ++- examples/app-with-backend/.config/.cprc.json | 2 +- examples/app-with-backend/.config/Dockerfile | 3 ++- examples/app-with-dashboards/.config/.cprc.json | 2 +- examples/app-with-dashboards/.config/Dockerfile | 3 ++- examples/app-with-extension-point/.config/.cprc.json | 2 +- examples/app-with-extension-point/.config/Dockerfile | 3 ++- examples/app-with-extensions/.config/.cprc.json | 2 +- examples/app-with-extensions/.config/Dockerfile | 3 ++- examples/app-with-rbac/.config/.cprc.json | 2 +- examples/app-with-rbac/.config/Dockerfile | 3 ++- examples/app-with-scenes/.config/.cprc.json | 2 +- examples/app-with-scenes/.config/Dockerfile | 3 ++- examples/app-with-service-account/.config/.cprc.json | 2 +- examples/app-with-service-account/.config/Dockerfile | 3 ++- examples/datasource-basic/.config/.cprc.json | 2 +- examples/datasource-basic/.config/Dockerfile | 3 ++- examples/datasource-http-backend/.config/.cprc.json | 2 +- examples/datasource-http-backend/.config/Dockerfile | 3 ++- examples/datasource-http/.config/.cprc.json | 2 +- examples/datasource-http/.config/Dockerfile | 3 ++- examples/datasource-logs/.config/.cprc.json | 2 +- examples/datasource-logs/.config/Dockerfile | 3 ++- .../streaming-backend-websocket-plugin/.config/.cprc.json | 2 +- .../streaming-backend-websocket-plugin/.config/Dockerfile | 3 ++- .../streaming-websocket-plugin/.config/.cprc.json | 2 +- .../streaming-websocket-plugin/.config/Dockerfile | 3 ++- examples/panel-basic/.config/.cprc.json | 2 +- examples/panel-basic/.config/Dockerfile | 3 ++- examples/panel-datalinks/.config/.cprc.json | 2 +- examples/panel-datalinks/.config/Dockerfile | 3 ++- examples/panel-frame-select/.config/.cprc.json | 2 +- examples/panel-frame-select/.config/Dockerfile | 3 ++- 34 files changed, 51 insertions(+), 34 deletions(-) diff --git a/examples/app-basic/.config/.cprc.json b/examples/app-basic/.config/.cprc.json index 5485ccb3c..c409749d8 100644 --- a/examples/app-basic/.config/.cprc.json +++ b/examples/app-basic/.config/.cprc.json @@ -1,3 +1,3 @@ { - "version": "5.12.1" + "version": "5.12.2" } diff --git a/examples/app-basic/.config/Dockerfile b/examples/app-basic/.config/Dockerfile index a53ac59f0..c55d9e1f5 100644 --- a/examples/app-basic/.config/Dockerfile +++ b/examples/app-basic/.config/Dockerfile @@ -3,6 +3,7 @@ ARG grafana_image=grafana-enterprise FROM grafana/${grafana_image}:${grafana_version} +ARG anonymous_auth_enabled=true ARG development=false ARG TARGETARCH @@ -12,7 +13,7 @@ ENV DEV "${development}" # Make it as simple as possible to access the grafana instance for development purposes # Do NOT enable these settings in a public facing / production grafana instance ENV GF_AUTH_ANONYMOUS_ORG_ROLE "Admin" -ENV GF_AUTH_ANONYMOUS_ENABLED "{anonymous_auth_enabled}" +ENV GF_AUTH_ANONYMOUS_ENABLED "${anonymous_auth_enabled}" ENV GF_AUTH_BASIC_ENABLED "false" # Set development mode so plugins can be loaded without the need to sign ENV GF_DEFAULT_APP_MODE "development" diff --git a/examples/app-with-backend/.config/.cprc.json b/examples/app-with-backend/.config/.cprc.json index 5485ccb3c..c409749d8 100644 --- a/examples/app-with-backend/.config/.cprc.json +++ b/examples/app-with-backend/.config/.cprc.json @@ -1,3 +1,3 @@ { - "version": "5.12.1" + "version": "5.12.2" } diff --git a/examples/app-with-backend/.config/Dockerfile b/examples/app-with-backend/.config/Dockerfile index 352f9f6c5..0c5e6e8ea 100755 --- a/examples/app-with-backend/.config/Dockerfile +++ b/examples/app-with-backend/.config/Dockerfile @@ -3,6 +3,7 @@ ARG grafana_image=grafana-enterprise FROM grafana/${grafana_image}:${grafana_version} +ARG anonymous_auth_enabled=true ARG development=false ARG TARGETARCH @@ -14,7 +15,7 @@ ENV DEV "${development}" # Make it as simple as possible to access the grafana instance for development purposes # Do NOT enable these settings in a public facing / production grafana instance ENV GF_AUTH_ANONYMOUS_ORG_ROLE "Admin" -ENV GF_AUTH_ANONYMOUS_ENABLED "{anonymous_auth_enabled}" +ENV GF_AUTH_ANONYMOUS_ENABLED "${anonymous_auth_enabled}" ENV GF_AUTH_BASIC_ENABLED "false" # Set development mode so plugins can be loaded without the need to sign ENV GF_DEFAULT_APP_MODE "development" diff --git a/examples/app-with-dashboards/.config/.cprc.json b/examples/app-with-dashboards/.config/.cprc.json index 5485ccb3c..c409749d8 100644 --- a/examples/app-with-dashboards/.config/.cprc.json +++ b/examples/app-with-dashboards/.config/.cprc.json @@ -1,3 +1,3 @@ { - "version": "5.12.1" + "version": "5.12.2" } diff --git a/examples/app-with-dashboards/.config/Dockerfile b/examples/app-with-dashboards/.config/Dockerfile index a53ac59f0..c55d9e1f5 100644 --- a/examples/app-with-dashboards/.config/Dockerfile +++ b/examples/app-with-dashboards/.config/Dockerfile @@ -3,6 +3,7 @@ ARG grafana_image=grafana-enterprise FROM grafana/${grafana_image}:${grafana_version} +ARG anonymous_auth_enabled=true ARG development=false ARG TARGETARCH @@ -12,7 +13,7 @@ ENV DEV "${development}" # Make it as simple as possible to access the grafana instance for development purposes # Do NOT enable these settings in a public facing / production grafana instance ENV GF_AUTH_ANONYMOUS_ORG_ROLE "Admin" -ENV GF_AUTH_ANONYMOUS_ENABLED "{anonymous_auth_enabled}" +ENV GF_AUTH_ANONYMOUS_ENABLED "${anonymous_auth_enabled}" ENV GF_AUTH_BASIC_ENABLED "false" # Set development mode so plugins can be loaded without the need to sign ENV GF_DEFAULT_APP_MODE "development" diff --git a/examples/app-with-extension-point/.config/.cprc.json b/examples/app-with-extension-point/.config/.cprc.json index 5485ccb3c..c409749d8 100644 --- a/examples/app-with-extension-point/.config/.cprc.json +++ b/examples/app-with-extension-point/.config/.cprc.json @@ -1,3 +1,3 @@ { - "version": "5.12.1" + "version": "5.12.2" } diff --git a/examples/app-with-extension-point/.config/Dockerfile b/examples/app-with-extension-point/.config/Dockerfile index a53ac59f0..c55d9e1f5 100644 --- a/examples/app-with-extension-point/.config/Dockerfile +++ b/examples/app-with-extension-point/.config/Dockerfile @@ -3,6 +3,7 @@ ARG grafana_image=grafana-enterprise FROM grafana/${grafana_image}:${grafana_version} +ARG anonymous_auth_enabled=true ARG development=false ARG TARGETARCH @@ -12,7 +13,7 @@ ENV DEV "${development}" # Make it as simple as possible to access the grafana instance for development purposes # Do NOT enable these settings in a public facing / production grafana instance ENV GF_AUTH_ANONYMOUS_ORG_ROLE "Admin" -ENV GF_AUTH_ANONYMOUS_ENABLED "{anonymous_auth_enabled}" +ENV GF_AUTH_ANONYMOUS_ENABLED "${anonymous_auth_enabled}" ENV GF_AUTH_BASIC_ENABLED "false" # Set development mode so plugins can be loaded without the need to sign ENV GF_DEFAULT_APP_MODE "development" diff --git a/examples/app-with-extensions/.config/.cprc.json b/examples/app-with-extensions/.config/.cprc.json index 5485ccb3c..c409749d8 100644 --- a/examples/app-with-extensions/.config/.cprc.json +++ b/examples/app-with-extensions/.config/.cprc.json @@ -1,3 +1,3 @@ { - "version": "5.12.1" + "version": "5.12.2" } diff --git a/examples/app-with-extensions/.config/Dockerfile b/examples/app-with-extensions/.config/Dockerfile index a53ac59f0..c55d9e1f5 100644 --- a/examples/app-with-extensions/.config/Dockerfile +++ b/examples/app-with-extensions/.config/Dockerfile @@ -3,6 +3,7 @@ ARG grafana_image=grafana-enterprise FROM grafana/${grafana_image}:${grafana_version} +ARG anonymous_auth_enabled=true ARG development=false ARG TARGETARCH @@ -12,7 +13,7 @@ ENV DEV "${development}" # Make it as simple as possible to access the grafana instance for development purposes # Do NOT enable these settings in a public facing / production grafana instance ENV GF_AUTH_ANONYMOUS_ORG_ROLE "Admin" -ENV GF_AUTH_ANONYMOUS_ENABLED "{anonymous_auth_enabled}" +ENV GF_AUTH_ANONYMOUS_ENABLED "${anonymous_auth_enabled}" ENV GF_AUTH_BASIC_ENABLED "false" # Set development mode so plugins can be loaded without the need to sign ENV GF_DEFAULT_APP_MODE "development" diff --git a/examples/app-with-rbac/.config/.cprc.json b/examples/app-with-rbac/.config/.cprc.json index 5485ccb3c..c409749d8 100644 --- a/examples/app-with-rbac/.config/.cprc.json +++ b/examples/app-with-rbac/.config/.cprc.json @@ -1,3 +1,3 @@ { - "version": "5.12.1" + "version": "5.12.2" } diff --git a/examples/app-with-rbac/.config/Dockerfile b/examples/app-with-rbac/.config/Dockerfile index 352f9f6c5..0c5e6e8ea 100644 --- a/examples/app-with-rbac/.config/Dockerfile +++ b/examples/app-with-rbac/.config/Dockerfile @@ -3,6 +3,7 @@ ARG grafana_image=grafana-enterprise FROM grafana/${grafana_image}:${grafana_version} +ARG anonymous_auth_enabled=true ARG development=false ARG TARGETARCH @@ -14,7 +15,7 @@ ENV DEV "${development}" # Make it as simple as possible to access the grafana instance for development purposes # Do NOT enable these settings in a public facing / production grafana instance ENV GF_AUTH_ANONYMOUS_ORG_ROLE "Admin" -ENV GF_AUTH_ANONYMOUS_ENABLED "{anonymous_auth_enabled}" +ENV GF_AUTH_ANONYMOUS_ENABLED "${anonymous_auth_enabled}" ENV GF_AUTH_BASIC_ENABLED "false" # Set development mode so plugins can be loaded without the need to sign ENV GF_DEFAULT_APP_MODE "development" diff --git a/examples/app-with-scenes/.config/.cprc.json b/examples/app-with-scenes/.config/.cprc.json index 5485ccb3c..c409749d8 100644 --- a/examples/app-with-scenes/.config/.cprc.json +++ b/examples/app-with-scenes/.config/.cprc.json @@ -1,3 +1,3 @@ { - "version": "5.12.1" + "version": "5.12.2" } diff --git a/examples/app-with-scenes/.config/Dockerfile b/examples/app-with-scenes/.config/Dockerfile index a53ac59f0..c55d9e1f5 100644 --- a/examples/app-with-scenes/.config/Dockerfile +++ b/examples/app-with-scenes/.config/Dockerfile @@ -3,6 +3,7 @@ ARG grafana_image=grafana-enterprise FROM grafana/${grafana_image}:${grafana_version} +ARG anonymous_auth_enabled=true ARG development=false ARG TARGETARCH @@ -12,7 +13,7 @@ ENV DEV "${development}" # Make it as simple as possible to access the grafana instance for development purposes # Do NOT enable these settings in a public facing / production grafana instance ENV GF_AUTH_ANONYMOUS_ORG_ROLE "Admin" -ENV GF_AUTH_ANONYMOUS_ENABLED "{anonymous_auth_enabled}" +ENV GF_AUTH_ANONYMOUS_ENABLED "${anonymous_auth_enabled}" ENV GF_AUTH_BASIC_ENABLED "false" # Set development mode so plugins can be loaded without the need to sign ENV GF_DEFAULT_APP_MODE "development" diff --git a/examples/app-with-service-account/.config/.cprc.json b/examples/app-with-service-account/.config/.cprc.json index 5485ccb3c..c409749d8 100644 --- a/examples/app-with-service-account/.config/.cprc.json +++ b/examples/app-with-service-account/.config/.cprc.json @@ -1,3 +1,3 @@ { - "version": "5.12.1" + "version": "5.12.2" } diff --git a/examples/app-with-service-account/.config/Dockerfile b/examples/app-with-service-account/.config/Dockerfile index 352f9f6c5..0c5e6e8ea 100644 --- a/examples/app-with-service-account/.config/Dockerfile +++ b/examples/app-with-service-account/.config/Dockerfile @@ -3,6 +3,7 @@ ARG grafana_image=grafana-enterprise FROM grafana/${grafana_image}:${grafana_version} +ARG anonymous_auth_enabled=true ARG development=false ARG TARGETARCH @@ -14,7 +15,7 @@ ENV DEV "${development}" # Make it as simple as possible to access the grafana instance for development purposes # Do NOT enable these settings in a public facing / production grafana instance ENV GF_AUTH_ANONYMOUS_ORG_ROLE "Admin" -ENV GF_AUTH_ANONYMOUS_ENABLED "{anonymous_auth_enabled}" +ENV GF_AUTH_ANONYMOUS_ENABLED "${anonymous_auth_enabled}" ENV GF_AUTH_BASIC_ENABLED "false" # Set development mode so plugins can be loaded without the need to sign ENV GF_DEFAULT_APP_MODE "development" diff --git a/examples/datasource-basic/.config/.cprc.json b/examples/datasource-basic/.config/.cprc.json index 5485ccb3c..c409749d8 100644 --- a/examples/datasource-basic/.config/.cprc.json +++ b/examples/datasource-basic/.config/.cprc.json @@ -1,3 +1,3 @@ { - "version": "5.12.1" + "version": "5.12.2" } diff --git a/examples/datasource-basic/.config/Dockerfile b/examples/datasource-basic/.config/Dockerfile index 352f9f6c5..0c5e6e8ea 100644 --- a/examples/datasource-basic/.config/Dockerfile +++ b/examples/datasource-basic/.config/Dockerfile @@ -3,6 +3,7 @@ ARG grafana_image=grafana-enterprise FROM grafana/${grafana_image}:${grafana_version} +ARG anonymous_auth_enabled=true ARG development=false ARG TARGETARCH @@ -14,7 +15,7 @@ ENV DEV "${development}" # Make it as simple as possible to access the grafana instance for development purposes # Do NOT enable these settings in a public facing / production grafana instance ENV GF_AUTH_ANONYMOUS_ORG_ROLE "Admin" -ENV GF_AUTH_ANONYMOUS_ENABLED "{anonymous_auth_enabled}" +ENV GF_AUTH_ANONYMOUS_ENABLED "${anonymous_auth_enabled}" ENV GF_AUTH_BASIC_ENABLED "false" # Set development mode so plugins can be loaded without the need to sign ENV GF_DEFAULT_APP_MODE "development" diff --git a/examples/datasource-http-backend/.config/.cprc.json b/examples/datasource-http-backend/.config/.cprc.json index 5485ccb3c..c409749d8 100644 --- a/examples/datasource-http-backend/.config/.cprc.json +++ b/examples/datasource-http-backend/.config/.cprc.json @@ -1,3 +1,3 @@ { - "version": "5.12.1" + "version": "5.12.2" } diff --git a/examples/datasource-http-backend/.config/Dockerfile b/examples/datasource-http-backend/.config/Dockerfile index 352f9f6c5..0c5e6e8ea 100644 --- a/examples/datasource-http-backend/.config/Dockerfile +++ b/examples/datasource-http-backend/.config/Dockerfile @@ -3,6 +3,7 @@ ARG grafana_image=grafana-enterprise FROM grafana/${grafana_image}:${grafana_version} +ARG anonymous_auth_enabled=true ARG development=false ARG TARGETARCH @@ -14,7 +15,7 @@ ENV DEV "${development}" # Make it as simple as possible to access the grafana instance for development purposes # Do NOT enable these settings in a public facing / production grafana instance ENV GF_AUTH_ANONYMOUS_ORG_ROLE "Admin" -ENV GF_AUTH_ANONYMOUS_ENABLED "{anonymous_auth_enabled}" +ENV GF_AUTH_ANONYMOUS_ENABLED "${anonymous_auth_enabled}" ENV GF_AUTH_BASIC_ENABLED "false" # Set development mode so plugins can be loaded without the need to sign ENV GF_DEFAULT_APP_MODE "development" diff --git a/examples/datasource-http/.config/.cprc.json b/examples/datasource-http/.config/.cprc.json index 5485ccb3c..c409749d8 100644 --- a/examples/datasource-http/.config/.cprc.json +++ b/examples/datasource-http/.config/.cprc.json @@ -1,3 +1,3 @@ { - "version": "5.12.1" + "version": "5.12.2" } diff --git a/examples/datasource-http/.config/Dockerfile b/examples/datasource-http/.config/Dockerfile index a53ac59f0..c55d9e1f5 100644 --- a/examples/datasource-http/.config/Dockerfile +++ b/examples/datasource-http/.config/Dockerfile @@ -3,6 +3,7 @@ ARG grafana_image=grafana-enterprise FROM grafana/${grafana_image}:${grafana_version} +ARG anonymous_auth_enabled=true ARG development=false ARG TARGETARCH @@ -12,7 +13,7 @@ ENV DEV "${development}" # Make it as simple as possible to access the grafana instance for development purposes # Do NOT enable these settings in a public facing / production grafana instance ENV GF_AUTH_ANONYMOUS_ORG_ROLE "Admin" -ENV GF_AUTH_ANONYMOUS_ENABLED "{anonymous_auth_enabled}" +ENV GF_AUTH_ANONYMOUS_ENABLED "${anonymous_auth_enabled}" ENV GF_AUTH_BASIC_ENABLED "false" # Set development mode so plugins can be loaded without the need to sign ENV GF_DEFAULT_APP_MODE "development" diff --git a/examples/datasource-logs/.config/.cprc.json b/examples/datasource-logs/.config/.cprc.json index 5485ccb3c..c409749d8 100644 --- a/examples/datasource-logs/.config/.cprc.json +++ b/examples/datasource-logs/.config/.cprc.json @@ -1,3 +1,3 @@ { - "version": "5.12.1" + "version": "5.12.2" } diff --git a/examples/datasource-logs/.config/Dockerfile b/examples/datasource-logs/.config/Dockerfile index a53ac59f0..c55d9e1f5 100644 --- a/examples/datasource-logs/.config/Dockerfile +++ b/examples/datasource-logs/.config/Dockerfile @@ -3,6 +3,7 @@ ARG grafana_image=grafana-enterprise FROM grafana/${grafana_image}:${grafana_version} +ARG anonymous_auth_enabled=true ARG development=false ARG TARGETARCH @@ -12,7 +13,7 @@ ENV DEV "${development}" # Make it as simple as possible to access the grafana instance for development purposes # Do NOT enable these settings in a public facing / production grafana instance ENV GF_AUTH_ANONYMOUS_ORG_ROLE "Admin" -ENV GF_AUTH_ANONYMOUS_ENABLED "{anonymous_auth_enabled}" +ENV GF_AUTH_ANONYMOUS_ENABLED "${anonymous_auth_enabled}" ENV GF_AUTH_BASIC_ENABLED "false" # Set development mode so plugins can be loaded without the need to sign ENV GF_DEFAULT_APP_MODE "development" diff --git a/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/.cprc.json b/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/.cprc.json index 5485ccb3c..c409749d8 100644 --- a/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/.cprc.json +++ b/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/.cprc.json @@ -1,3 +1,3 @@ { - "version": "5.12.1" + "version": "5.12.2" } diff --git a/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/Dockerfile b/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/Dockerfile index 352f9f6c5..0c5e6e8ea 100644 --- a/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/Dockerfile +++ b/examples/datasource-streaming-backend-websocket/streaming-backend-websocket-plugin/.config/Dockerfile @@ -3,6 +3,7 @@ ARG grafana_image=grafana-enterprise FROM grafana/${grafana_image}:${grafana_version} +ARG anonymous_auth_enabled=true ARG development=false ARG TARGETARCH @@ -14,7 +15,7 @@ ENV DEV "${development}" # Make it as simple as possible to access the grafana instance for development purposes # Do NOT enable these settings in a public facing / production grafana instance ENV GF_AUTH_ANONYMOUS_ORG_ROLE "Admin" -ENV GF_AUTH_ANONYMOUS_ENABLED "{anonymous_auth_enabled}" +ENV GF_AUTH_ANONYMOUS_ENABLED "${anonymous_auth_enabled}" ENV GF_AUTH_BASIC_ENABLED "false" # Set development mode so plugins can be loaded without the need to sign ENV GF_DEFAULT_APP_MODE "development" diff --git a/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/.cprc.json b/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/.cprc.json index 5485ccb3c..c409749d8 100644 --- a/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/.cprc.json +++ b/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/.cprc.json @@ -1,3 +1,3 @@ { - "version": "5.12.1" + "version": "5.12.2" } diff --git a/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/Dockerfile b/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/Dockerfile index a53ac59f0..c55d9e1f5 100644 --- a/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/Dockerfile +++ b/examples/datasource-streaming-websocket/streaming-websocket-plugin/.config/Dockerfile @@ -3,6 +3,7 @@ ARG grafana_image=grafana-enterprise FROM grafana/${grafana_image}:${grafana_version} +ARG anonymous_auth_enabled=true ARG development=false ARG TARGETARCH @@ -12,7 +13,7 @@ ENV DEV "${development}" # Make it as simple as possible to access the grafana instance for development purposes # Do NOT enable these settings in a public facing / production grafana instance ENV GF_AUTH_ANONYMOUS_ORG_ROLE "Admin" -ENV GF_AUTH_ANONYMOUS_ENABLED "{anonymous_auth_enabled}" +ENV GF_AUTH_ANONYMOUS_ENABLED "${anonymous_auth_enabled}" ENV GF_AUTH_BASIC_ENABLED "false" # Set development mode so plugins can be loaded without the need to sign ENV GF_DEFAULT_APP_MODE "development" diff --git a/examples/panel-basic/.config/.cprc.json b/examples/panel-basic/.config/.cprc.json index 5485ccb3c..c409749d8 100644 --- a/examples/panel-basic/.config/.cprc.json +++ b/examples/panel-basic/.config/.cprc.json @@ -1,3 +1,3 @@ { - "version": "5.12.1" + "version": "5.12.2" } diff --git a/examples/panel-basic/.config/Dockerfile b/examples/panel-basic/.config/Dockerfile index a53ac59f0..c55d9e1f5 100644 --- a/examples/panel-basic/.config/Dockerfile +++ b/examples/panel-basic/.config/Dockerfile @@ -3,6 +3,7 @@ ARG grafana_image=grafana-enterprise FROM grafana/${grafana_image}:${grafana_version} +ARG anonymous_auth_enabled=true ARG development=false ARG TARGETARCH @@ -12,7 +13,7 @@ ENV DEV "${development}" # Make it as simple as possible to access the grafana instance for development purposes # Do NOT enable these settings in a public facing / production grafana instance ENV GF_AUTH_ANONYMOUS_ORG_ROLE "Admin" -ENV GF_AUTH_ANONYMOUS_ENABLED "{anonymous_auth_enabled}" +ENV GF_AUTH_ANONYMOUS_ENABLED "${anonymous_auth_enabled}" ENV GF_AUTH_BASIC_ENABLED "false" # Set development mode so plugins can be loaded without the need to sign ENV GF_DEFAULT_APP_MODE "development" diff --git a/examples/panel-datalinks/.config/.cprc.json b/examples/panel-datalinks/.config/.cprc.json index 5485ccb3c..c409749d8 100644 --- a/examples/panel-datalinks/.config/.cprc.json +++ b/examples/panel-datalinks/.config/.cprc.json @@ -1,3 +1,3 @@ { - "version": "5.12.1" + "version": "5.12.2" } diff --git a/examples/panel-datalinks/.config/Dockerfile b/examples/panel-datalinks/.config/Dockerfile index a53ac59f0..c55d9e1f5 100644 --- a/examples/panel-datalinks/.config/Dockerfile +++ b/examples/panel-datalinks/.config/Dockerfile @@ -3,6 +3,7 @@ ARG grafana_image=grafana-enterprise FROM grafana/${grafana_image}:${grafana_version} +ARG anonymous_auth_enabled=true ARG development=false ARG TARGETARCH @@ -12,7 +13,7 @@ ENV DEV "${development}" # Make it as simple as possible to access the grafana instance for development purposes # Do NOT enable these settings in a public facing / production grafana instance ENV GF_AUTH_ANONYMOUS_ORG_ROLE "Admin" -ENV GF_AUTH_ANONYMOUS_ENABLED "{anonymous_auth_enabled}" +ENV GF_AUTH_ANONYMOUS_ENABLED "${anonymous_auth_enabled}" ENV GF_AUTH_BASIC_ENABLED "false" # Set development mode so plugins can be loaded without the need to sign ENV GF_DEFAULT_APP_MODE "development" diff --git a/examples/panel-frame-select/.config/.cprc.json b/examples/panel-frame-select/.config/.cprc.json index 5485ccb3c..c409749d8 100644 --- a/examples/panel-frame-select/.config/.cprc.json +++ b/examples/panel-frame-select/.config/.cprc.json @@ -1,3 +1,3 @@ { - "version": "5.12.1" + "version": "5.12.2" } diff --git a/examples/panel-frame-select/.config/Dockerfile b/examples/panel-frame-select/.config/Dockerfile index a53ac59f0..c55d9e1f5 100644 --- a/examples/panel-frame-select/.config/Dockerfile +++ b/examples/panel-frame-select/.config/Dockerfile @@ -3,6 +3,7 @@ ARG grafana_image=grafana-enterprise FROM grafana/${grafana_image}:${grafana_version} +ARG anonymous_auth_enabled=true ARG development=false ARG TARGETARCH @@ -12,7 +13,7 @@ ENV DEV "${development}" # Make it as simple as possible to access the grafana instance for development purposes # Do NOT enable these settings in a public facing / production grafana instance ENV GF_AUTH_ANONYMOUS_ORG_ROLE "Admin" -ENV GF_AUTH_ANONYMOUS_ENABLED "{anonymous_auth_enabled}" +ENV GF_AUTH_ANONYMOUS_ENABLED "${anonymous_auth_enabled}" ENV GF_AUTH_BASIC_ENABLED "false" # Set development mode so plugins can be loaded without the need to sign ENV GF_DEFAULT_APP_MODE "development"