mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-16 11:24:35 -05:00
968cdc1a38
* cli: move internal packages Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * cli: fix buildfiles Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * bazel: fix exclude dir Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * cli: move back libraries that will not be used by TF provider Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> --------- Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com>
25 lines
746 B
YAML
25 lines
746 B
YAML
{{- if .Values.webhook.config -}}
|
|
{{- if not .Values.webhook.config.apiVersion -}}
|
|
{{- fail "webhook.config.apiVersion must be set" -}}
|
|
{{- end -}}
|
|
|
|
{{- if not .Values.webhook.config.kind -}}
|
|
{{- fail "webhook.config.kind must be set" -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ include "webhook.fullname" . }}
|
|
namespace: {{ include "cert-manager.namespace" . }}
|
|
labels:
|
|
app: {{ include "webhook.name" . }}
|
|
app.kubernetes.io/name: {{ include "webhook.name" . }}
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
app.kubernetes.io/component: "webhook"
|
|
data:
|
|
{{- if .Values.webhook.config }}
|
|
config.yaml: |
|
|
{{ .Values.webhook.config | toYaml | nindent 4 }}
|
|
{{- end }}
|