mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-25 21:46:50 +00:00
2b268fdd7f
* update tls configuration in helm chart * typo fix
10 lines
256 B
YAML
10 lines
256 B
YAML
{{- if .Values.tls.enabled }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ include "rustfs.fullname" . }}-tls
|
|
type: kubernetes.io/tls
|
|
data:
|
|
tls.crt : {{ .Values.tls.crt | b64enc | quote }}
|
|
tls.key : {{ .Values.tls.key | b64enc | quote }}
|
|
{{- end }} |