Skip to content

Commit

Permalink
fix(grafana): dns dots
Browse files Browse the repository at this point in the history
  • Loading branch information
buroa committed Jan 5, 2024
1 parent ea592e9 commit bd3a801
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kubernetes/apps/monitoring/grafana/app/externalsecret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
admin-password: "{{ .GRAFANA_ADMIN_PASS }}"
# Grafana
GF_DATABASE_NAME: &dbName grafana
GF_DATABASE_HOST: postgres-rw.databases.svc.cluster.local:5432
GF_DATABASE_HOST: postgres-rw.databases.svc.cluster.local.:5432
GF_DATABASE_USER: &dbUser "{{ .GRAFANA_DATABASE_USER }}"
GF_DATABASE_PASSWORD: &dbPass "{{ .GRAFANA_DATABASE_PASSWORD }}"
GF_DATABASE_SSL_MODE: disable
Expand All @@ -27,7 +27,7 @@ spec:
GF_AUTH_GENERIC_OAUTH_CLIENT_SECRET: "{{ .GRAFANA_OAUTH_CLIENT_SECRET }}"
# Postgres Init
INIT_POSTGRES_DBNAME: *dbName
INIT_POSTGRES_HOST: postgres-rw.databases.svc.cluster.local
INIT_POSTGRES_HOST: postgres-rw.databases.svc.cluster.local.
INIT_POSTGRES_USER: *dbUser
INIT_POSTGRES_PASS: *dbPass
INIT_POSTGRES_SUPER_PASS: "{{ .POSTGRES_SUPER_PASS }}"
Expand Down

0 comments on commit bd3a801

Please sign in to comment.