You've already forked DataMate
17
deployment/helm/milvus/templates/proxy-tls-secret.yaml
Normal file
17
deployment/helm/milvus/templates/proxy-tls-secret.yaml
Normal file
@@ -0,0 +1,17 @@
|
||||
{{- if and (.Values.proxy.tls) (.Values.proxy.tls.enabled) }}
|
||||
|
||||
{{- if and (.Values.proxy.tls.crt) (.Values.proxy.tls.key) }}
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: {{ .Values.proxy.tls.secretName }}
|
||||
namespace: {{ .Release.Namespace }}
|
||||
data:
|
||||
tls.crt: {{ .Values.proxy.tls.crt }}
|
||||
tls.key: {{ .Values.proxy.tls.key }}
|
||||
type: kubernetes.io/tls
|
||||
{{- end }}
|
||||
|
||||
{{- end -}}
|
||||
|
||||
Reference in New Issue
Block a user