This is an automated email from the ASF dual-hosted git repository.
kaxilnaik pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/master by this push:
new 1f0a785 Fix user in helm chart pgbouncer deployment (#11143)
1f0a785 is described below
commit 1f0a7857f283bbdecac51e67f4d76f81c87ed45d
Author: Ruben Laguna <[email protected]>
AuthorDate: Fri Sep 25 12:06:30 2020 +0200
Fix user in helm chart pgbouncer deployment (#11143)
---
chart/templates/pgbouncer/pgbouncer-deployment.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chart/templates/pgbouncer/pgbouncer-deployment.yaml
b/chart/templates/pgbouncer/pgbouncer-deployment.yaml
index 08712a7..8a79e65 100644
--- a/chart/templates/pgbouncer/pgbouncer-deployment.yaml
+++ b/chart/templates/pgbouncer/pgbouncer-deployment.yaml
@@ -69,7 +69,7 @@ spec:
command:
- pgbouncer
- -u
- - pgbouncer
+ - nobody
- /etc/pgbouncer/pgbouncer.ini
resources:
{{ toYaml .Values.pgbouncer.resources | indent 12 }}