Skip to content

Commit

Permalink
Fix accidental volume override (#226)
Browse files Browse the repository at this point in the history
This partially reverts commit ab289c5.
  • Loading branch information
ViliusS authored Nov 20, 2023
1 parent 1dfe09b commit 302254b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/pgadmin4/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
description: pgAdmin4 is a web based administration tool for PostgreSQL database
name: pgadmin4
version: 1.18.2
version: 1.18.3
appVersion: "7.7"
keywords:
- pgadmin
Expand Down
3 changes: 2 additions & 1 deletion charts/pgadmin4/examples/add-oauth2-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
# https://www.pgadmin.org/docs/pgadmin4/latest/oauth2.html

extraConfigmapMounts:
- name: pgadmin4-config
- name: config-local
configMap: pgadmin4-config
subPath: config_local.py
mountPath: "/pgadmin4/config_local.py"
readOnly: true
Expand Down
2 changes: 1 addition & 1 deletion charts/pgadmin4/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ spec:
{{- range .Values.extraConfigmapMounts }}
- name: {{ .name }}
configMap:
name: {{ .name }}
name: {{ .configMap }}
defaultMode: {{ .defaultMode | default 256 }}
{{- end }}
{{- range .Values.extraSecretMounts }}
Expand Down

0 comments on commit 302254b

Please sign in to comment.