mirror of
https://github.com/open-webui/helm-charts
synced 2025-06-26 18:16:14 +00:00
12 lines
302 B
YAML
12 lines
302 B
YAML
{{- if .Values.managedCertificate.enabled }}
|
|
apiVersion: networking.gke.io/v1
|
|
kind: ManagedCertificate
|
|
metadata:
|
|
name: {{ .Values.managedCertificate.name | default "mydomain-cert" }}
|
|
spec:
|
|
domains:
|
|
{{- range .Values.managedCertificate.domains }}
|
|
- {{ . | quote }}
|
|
{{- end }}
|
|
{{- end }}
|