mirror of
https://github.com/bitnami/charts.git
synced 2026-03-14 06:47:28 +08:00
[bitnami/*] Unify k8s directives separators (#10185)
* [bitnami/*] Unify k8s directives separators Signed-off-by: Carlos Rodriguez Hernandez <carlosrh@vmware.com> * [skip ci] Update README.md with readme-generator-for-helm Signed-off-by: Bitnami Containers <containers@bitnami.com> Co-authored-by: Bitnami Containers <containers@bitnami.com>
This commit is contained in:
committed by
GitHub
parent
b42600d139
commit
26502141d1
@@ -21,4 +21,4 @@ name: zookeeper
|
||||
sources:
|
||||
- https://github.com/bitnami/bitnami-docker-zookeeper
|
||||
- https://zookeeper.apache.org/
|
||||
version: 9.1.1
|
||||
version: 9.1.2
|
||||
|
||||
@@ -16,9 +16,9 @@ type: Opaque
|
||||
data:
|
||||
client-password: {{ include "zookeeper.client.password" . | b64enc | quote }}
|
||||
server-password: {{ include "zookeeper.server.password" . | b64enc | quote }}
|
||||
---
|
||||
{{- end }}
|
||||
{{- if (include "zookeeper.client.createTlsPasswordsSecret" .) }}
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
@@ -35,9 +35,9 @@ type: Opaque
|
||||
data:
|
||||
keystore-password: {{ default (randAlphaNum 10) .Values.tls.client.keystorePassword | b64enc | quote }}
|
||||
truststore-password: {{ default (randAlphaNum 10) .Values.tls.client.truststorePassword | b64enc | quote }}
|
||||
---
|
||||
{{- end }}
|
||||
{{- if (include "zookeeper.quorum.createTlsPasswordsSecret" .) }}
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
@@ -54,5 +54,4 @@ type: Opaque
|
||||
data:
|
||||
keystore-password: {{ default (randAlphaNum 10) .Values.tls.quorum.keystorePassword | b64enc | quote }}
|
||||
truststore-password: {{ default (randAlphaNum 10) .Values.tls.quorum.truststorePassword | b64enc | quote }}
|
||||
---
|
||||
{{- end }}
|
||||
|
||||
@@ -24,7 +24,6 @@ data:
|
||||
ca.crt: {{ $ca.Cert | b64enc | quote }}
|
||||
tls.crt: {{ $crt.Cert | b64enc | quote }}
|
||||
tls.key: {{ $crt.Key | b64enc | quote }}
|
||||
---
|
||||
{{- end }}
|
||||
{{- if (include "zookeeper.quorum.createTlsSecret" .) }}
|
||||
{{- $ca := genCA "zookeeper-quorum-ca" 365 }}
|
||||
@@ -35,6 +34,7 @@ data:
|
||||
{{- $headlessServiceName := printf "%s-headless" (include "common.names.fullname" .) }}
|
||||
{{- $altNames := list (printf "*.%s.%s.svc.%s" $headlessServiceName $releaseNamespace $clusterDomain) (printf "%s.%s.svc.%s" $headlessServiceName $releaseNamespace $clusterDomain) (printf "*.%s.%s.svc.%s" $serviceName $releaseNamespace $clusterDomain) (printf "%s.%s.svc.%s" $serviceName $releaseNamespace $clusterDomain) $fullname }}
|
||||
{{- $crt := genSignedCert $fullname nil $altNames 365 $ca }}
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
@@ -52,5 +52,4 @@ data:
|
||||
ca.crt: {{ $ca.Cert | b64enc | quote }}
|
||||
tls.crt: {{ $crt.Cert | b64enc | quote }}
|
||||
tls.key: {{ $crt.Key | b64enc | quote }}
|
||||
---
|
||||
{{- end }}
|
||||
|
||||
Reference in New Issue
Block a user