mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-28 07:57:01 +00:00
update tls configuration in helm chart (#900)
* update tls configuration in helm chart * typo fix
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
{{- if .Values.ingress.enabled }}
|
||||
{{- if .Values.tls.enabled }}
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: {{ include "rustfs.fullname" . }}-tls
|
||||
type: Opaque
|
||||
type: kubernetes.io/tls
|
||||
data:
|
||||
tls.crt : {{ .Files.Get "tls/tls.crt" | b64enc | quote }}
|
||||
tls.key : {{ .Files.Get "tls/tls.key" | b64enc | quote }}
|
||||
{{- end }}
|
||||
tls.crt : {{ .Values.tls.crt | b64enc | quote }}
|
||||
tls.key : {{ .Values.tls.key | b64enc | quote }}
|
||||
{{- end }}
|
||||
Reference in New Issue
Block a user