13 lines
1.2 KiB
Plaintext
13 lines
1.2 KiB
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"
|
|
|
|
3. The scrape-config.example.yml file and add_node() command were updated to use a secure endpoint for the traefik metrics instead of http. This requires an updated Traefik recipe that publishes the metrics on https.
|
|
|
|
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 <domain>` to see which secrets aren't created on the server (because their name was shortened) and run `abra app secret insert <domain> <secret_name> v1 <value>` to reinsert them with the shorter name. Or you can use the migrate_secret_names function in abra.sh to reinsert all existing secrets with their shorter name automatically: `abra app cmd --local <domain> migrate_secret_names`
|