mirror of https://github.com/linkerd/linkerd2.git
27 lines
489 B
YAML
27 lines
489 B
YAML
{{with .Values -}}
|
|
---
|
|
kind: ConfigMap
|
|
apiVersion: v1
|
|
metadata:
|
|
name: linkerd-config
|
|
namespace: {{.Namespace}}
|
|
labels:
|
|
{{.ControllerComponentLabel}}: controller
|
|
{{.ControllerNamespaceLabel}}: {{.Namespace}}
|
|
annotations:
|
|
{{.CreatedByAnnotation}}: {{.CliVersion}}
|
|
data:
|
|
{{- with .Configs.Global}}
|
|
global: |
|
|
{{.}}
|
|
{{- end}}
|
|
{{- with .Configs.Proxy}}
|
|
proxy: |
|
|
{{.}}
|
|
{{- end }}
|
|
{{- with .Configs.Install}}
|
|
install: |
|
|
{{.}}
|
|
{{- end }}
|
|
{{- end}}
|