templates/pgpool: fixed typo in deployment yaml pgool -> pgpool (#2170)

This commit is contained in:
Asaf Ohaion
2020-03-31 12:10:42 +03:00
committed by GitHub
parent e07d9d96e8
commit b928ba3aa2

View File

@@ -149,7 +149,7 @@ spec:
resources: {{- toYaml .Values.pgpool.resources | nindent 12 }}
{{- end }}
volumeMounts:
{{- if or (.Files.Glob "files/pgool.conf") .Values.pgpool.configuration }}
{{- if or (.Files.Glob "files/pgpool.conf") .Values.pgpool.configuration }}
- name: pgpool-config
mountPath: /opt/bitnami/pgpool/conf/
{{- end }}
@@ -166,7 +166,7 @@ spec:
mountPath: /opt/bitnami/pgpool/secrets/
{{- end }}
volumes:
{{- if or (.Files.Glob "files/pgool.conf") .Values.pgpool.configuration }}
{{- if or (.Files.Glob "files/pgpool.conf") .Values.pgpool.configuration }}
- name: pgpool-config
configMap:
name: {{ include "postgresql-ha.pgpoolConfigurationCM" . }}