mirror of
https://github.com/rustfs/rustfs.git
synced 2026-09-04 19:25:40 +00:00
1c085590ca
Co-authored-by: houseme <housemecn@gmail.com>
13 lines
343 B
YAML
13 lines
343 B
YAML
{{- if .Values.ingress.tls.enabled -}}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ include "rustfs.fullname" . }}-tls
|
|
labels:
|
|
{{- toYaml .Values.commonLabels | nindent 4 }}
|
|
type: kubernetes.io/tls
|
|
data:
|
|
tls.crt : {{ .Values.ingress.tls.crt | b64enc | quote }}
|
|
tls.key : {{ .Values.ingress.tls.key | b64enc | quote }}
|
|
{{- end }}
|