[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:
Michael Laccetti
2018-05-10 06:46:53 -07:00
committed by k8s-ci-robot
parent 4e543200a9
commit 0e953d4484
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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:
+1 -1
View File
@@ -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