You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
templates/deployment.yaml contains the following block at line 697:
---
{{- if .Values.kafka.authentication.tls.enabled }}
...
{{- end }}{{- if .Values.extraCoreComponentPodConfig }}{{ toYaml .Values.extraCoreComponentPodConfig | indent 6 -}}{{- end }}
which leads to the generation of a single extraCoreComponentPodConfig-block after rendering the template whenever it is defined. I'm quite sure the extraCoreComponentPodConfig-block should be inside the kafka.authentication.tls.enabled-block above.
templates/deployment.yaml
contains the following block at line 697:which leads to the generation of a single
extraCoreComponentPodConfig
-block after rendering the template whenever it is defined. I'm quite sure theextraCoreComponentPodConfig
-block should be inside thekafka.authentication.tls.enabled
-block above.For example if my values-file contains this:
the rendered template will contain this:
which obviously isn't a valid kubernetes-object.
Tested in
fission-all-1.12.0
The text was updated successfully, but these errors were encountered: