mirror of https://git.rancher.io/charts
41 lines
948 B
YAML
41 lines
948 B
YAML
{{- if .Values.experimentalEnableMutation }}
|
|
apiVersion: admissionregistration.k8s.io/v1
|
|
kind: MutatingWebhookConfiguration
|
|
metadata:
|
|
creationTimestamp: null
|
|
labels:
|
|
app: '{{ template "gatekeeper.name" . }}'
|
|
chart: '{{ template "gatekeeper.name" . }}'
|
|
heritage: '{{ .Release.Service }}'
|
|
release: '{{ .Release.Name }}'
|
|
name: gatekeeper-mutating-webhook-configuration
|
|
webhooks:
|
|
- admissionReviewVersions:
|
|
- v1
|
|
- v1beta1
|
|
clientConfig:
|
|
service:
|
|
name: gatekeeper-webhook-service
|
|
namespace: '{{ .Release.Namespace }}'
|
|
path: /v1/mutate
|
|
failurePolicy: Ignore
|
|
matchPolicy: Exact
|
|
name: mutation.gatekeeper.sh
|
|
namespaceSelector:
|
|
matchExpressions:
|
|
- key: admission.gatekeeper.sh/ignore
|
|
operator: DoesNotExist
|
|
rules:
|
|
- apiGroups:
|
|
- '*'
|
|
apiVersions:
|
|
- '*'
|
|
operations:
|
|
- CREATE
|
|
- UPDATE
|
|
resources:
|
|
- '*'
|
|
sideEffects: None
|
|
timeoutSeconds: 3
|
|
{{- end }}
|