UNCLASSIFIED - NO CUI

typo results in invalid values reference in postgresql subchart

https://repo1.dso.mil/big-bang/product/packages/keycloak/-/blob/main/chart/deps/postgresql/templates/statefulset.yaml#L78

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 }}