12345678910111213141516171819 |
- {{- if and .Values.provisioning.enabled (include "kafka.client.tlsEncryption" .) (not .Values.provisioning.auth.tls.passwordsSecret) }}
- apiVersion: v1
- kind: Secret
- metadata:
- name: {{ template "kafka.client.passwordsSecretName" . }}
- namespace: {{ .Release.Namespace | quote }}
- labels: {{- include "common.labels.standard" . | nindent 4 }}
- {{- if .Values.commonLabels }}
- {{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
- {{- end }}
- {{- if .Values.commonAnnotations }}
- annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
- {{- end }}
- type: Opaque
- data:
- truststore-password: {{ default "" .Values.provisioning.auth.tls.keystorePassword | b64enc | quote }}
- keystore-password: {{ default "" .Values.provisioning.auth.tls.truststorePassword | b64enc | quote }}
- key-password: {{ default "" .Values.provisioning.auth.tls.keyPassword | b64enc | quote }}
- {{- end }}
|