mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
bdd9dd922b
* Only deploy operators on GCP/Azure. * cert-manager is now deployed by default (GCP/Azure) * remove OLM
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 }}
|