From 2eebb520fec324af71feeda0348ef8dc661d2245 Mon Sep 17 00:00:00 2001 From: Philip Haupt <“der.mad.mob@gmail.com”> Date: Fri, 30 May 2025 12:28:22 +0200 Subject: [PATCH] vars --- pgadmin/main.yaml | 4 +++- pgadmin/src/values.yaml | 6 ++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/pgadmin/main.yaml b/pgadmin/main.yaml index 149b5cb..1cb1ba5 100644 --- a/pgadmin/main.yaml +++ b/pgadmin/main.yaml @@ -84,7 +84,7 @@ spec: containers: - env: - name: PGADMIN_CONFIG_ENHANCED_COOKIE_PROTECTION - value: "False" + value: "True" - name: PGADMIN_DEFAULT_EMAIL value: admin - name: PGADMIN_DEFAULT_PASSWORD @@ -92,6 +92,8 @@ spec: secretKeyRef: key: password name: pgadmin-pgadmin4 + - name: PGADMIN_DISABLE_POSTFIX + value: "True" image: docker.io/dpage/pgadmin4:9.4.0 imagePullPolicy: IfNotPresent livenessProbe: diff --git a/pgadmin/src/values.yaml b/pgadmin/src/values.yaml index 47556d0..8427b3f 100644 --- a/pgadmin/src/values.yaml +++ b/pgadmin/src/values.yaml @@ -215,12 +215,14 @@ env: ## If True, allows pgAdmin4 to create session cookies based on IP address ## Ref: https://www.pgadmin.org/docs/pgadmin4/latest/config_py.html ## - enhanced_cookie_protection: "False" + enhanced_cookie_protection: "True" ## Add custom environment variables that will be injected to deployment ## Ref: https://www.pgadmin.org/docs/pgadmin4/latest/container_deployment.html ## - variables: [] + variables: + - name: PGADMIN_DISABLE_POSTFIX + value: "True" # - name: PGADMIN_LISTEN_ADDRESS # value: "0.0.0.0" # - name: PGADMIN_LISTEN_PORT