mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/postgresql] PostgreSQL metrics need the right username (#5407)
* PostgreSQL metrics need the right username If we use `POSTGERS_USER` = `sonar`, metrics go boom. * Bump version * Bumping PostgreSQL version * Bumping PostgreSQL version * PostgreSQL metrics need the right username If we use `POSTGERS_USER` = `sonar`, metrics go boom. * Bumping PostgreSQL version
This commit is contained in:
committed by
k8s-ci-robot
parent
4e543200a9
commit
0e953d4484
@@ -1,5 +1,5 @@
|
||||
name: postgresql
|
||||
version: 0.11.1
|
||||
version: 0.11.2
|
||||
appVersion: 9.6.2
|
||||
description: Object-relational database management system (ORDBMS) with an emphasis on extensibility and on standards-compliance.
|
||||
keywords:
|
||||
|
||||
@@ -105,7 +105,7 @@ spec:
|
||||
imagePullPolicy: {{ default "" .Values.metrics.imagePullPolicy | quote }}
|
||||
env:
|
||||
- name: DATA_SOURCE_NAME
|
||||
value: postgresql://postgres@127.0.0.1:5432?sslmode=disable
|
||||
value: postgresql://{{ default "postgres" .Values.postgresUser }}@127.0.0.1:5432?sslmode=disable
|
||||
ports:
|
||||
- name: metrics
|
||||
containerPort: 9187
|
||||
|
||||
Reference in New Issue
Block a user