You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2020/10/03 19:48:15 UTC

[airflow] 02/14: Fix user in helm chart pgbouncer deployment (#11143)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch v1-10-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 0628da2b082a1b4ba7a288cd5014013ae1441099
Author: Ruben Laguna <ru...@gmail.com>
AuthorDate: Fri Sep 25 12:06:30 2020 +0200

    Fix user in helm chart pgbouncer deployment (#11143)
    
    (cherry picked from commit 1f0a7857f283bbdecac51e67f4d76f81c87ed45d)
---
 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 }}