디렉토리 구조 및 각 서비스 추가
This commit is contained in:
16
helm/teleport-cluster/templates/proxy/config.yaml
Normal file
16
helm/teleport-cluster/templates/proxy/config.yaml
Normal file
@@ -0,0 +1,16 @@
|
||||
{{- $proxy := mustMergeOverwrite (mustDeepCopy .Values) .Values.proxy -}}
|
||||
{{- $configTemplate := printf "teleport-cluster.proxy.config.%s" $proxy.chartMode -}}
|
||||
{{- if (contains ":" $proxy.clusterName) -}}
|
||||
{{- fail "clusterName must not contain a colon, you can override the cluster's public address with publicAddr" -}}
|
||||
{{- end -}}
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: {{ .Release.Name }}-proxy
|
||||
namespace: {{ .Release.Namespace }}
|
||||
{{- if $proxy.annotations.config }}
|
||||
annotations: {{- toYaml $proxy.annotations.config | nindent 4 }}
|
||||
{{- end }}
|
||||
data:
|
||||
teleport.yaml: |2
|
||||
{{- mustMergeOverwrite (include $configTemplate . | fromYaml) $proxy.teleportConfig | toYaml | nindent 4 -}}
|
||||
Reference in New Issue
Block a user