typo results in invalid values reference in postgresql subchart
There appears to be a typo (.Values.postgesql
) when referencing containerSecurityContext in the postgresql subchart.
So this:
securityContext:
{{- toYaml $.Values.postgesql.containerSecurityContext | nindent 12 }}
should be this
securityContext:
{{- toYaml $.Values.containerSecurityContext | nindent 12 }}