forked from coop-cloud/monitoring-ng
10 lines
858 B
Plaintext
10 lines
858 B
Plaintext
1. OIDC was moved into a seperate compose file. If you have oidc configured you need to add the following line to you .env file:
|
|
|
|
COMPOSE_FILE="$COMPOSE_FILE:compose.grafana-oidc.yml"
|
|
|
|
2. SMTP was moved into a seperate compose file. If you have smtp configured you need to add the following line to you .env file:
|
|
|
|
COMPOSE_FILE="$COMPOSE_FILE:compose.grafana-smtp.yml"
|
|
|
|
4. Secret and config names were shortened to max 14 characters to prevent going over Docker's 64 character limit when STACK_NAME and VERSION are added to it.
|
|
When upgrading, you need to reinsert the secrets with their shorter names. Run `abra app secret list monitoring.example.org` to see which secrets aren't created on the server (because their name was shortened) and run `abra app secret insert monitoring.example.org <secret_name> v1 <value>` to reinsert them with the shorter name. |