codecentric / helm-charts

A curated set of Helm charts brought to you by codecentric

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

helm: Defined`extraEnvFrom`'s values.schema is wrong

rlaisqls opened this issue · comments

In keycloak chart and keycloakx chart, extraEnvFrom's values.schema is wrong.
Statefulset manifest is using it by {{- tpl . $ | nindent 12 }}, so it's type should be list to result like this.

      envFrom:
      - configMapRef:
          name: special-config

envFrom:
{{- with .Values.extraEnvFrom }}
{{- tpl . $ | nindent 12 }}
{{- end }}

However, it is now a string type, so the definition must be modified to use an additional EnvFrom value. I want you to work on this.

This issue has been marked as stale because it has been open for 30 days with no activity. It will be automatically closed in 10 days if no further activity occurs.