Filippo Buletto
Filippo Buletto
Surely you mean @FiloSottile :)
Workaround: create the `~/.aws/credentials` file (EDIT: also work with exported variables) using your SSO login page and selecting "Command line or programmatic access". See: 1. https://aws.amazon.com/blogs/security/aws-single-sign-on-now-enables-command-line-interface-access-for-aws-accounts-using-corporate-credentials/ 2. https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-profiles.html To me,...
Grafana version 12.3.0 deployed by the chart v10.1.5 still uses the deprecated env variable resulting in the error: ``` GF_INSTALL_PLUGINS is deprecated. Use GF_PLUGINS_PREINSTALL or GF_PLUGINS_PREINSTALL_SYNC instead. Checkout the documentation...
As a (very ugly) workaround you can empty the `plugins` array and use the `env` object. From: ```yaml env: {} plugins: - yesoreyeram-infinity-datasource ``` To: ```yaml env: GF_PLUGINS_PREINSTALL: yesoreyeram-infinity-datasource plugins:...