2023-09-24 17:02:57 +02:00
{{- if and .Values.controller.admissionWebhooks.enabled .Values.controller.admissionWebhooks.patch.enabled (not .Values.controller.admissionWebhooks.certManager.enabled) -}}
2023-01-08 22:59:28 +01:00
apiVersion : networking.k8s.io/v1
kind : NetworkPolicy
metadata :
name : {{ include "ingress-nginx.fullname" . }}-admission
namespace : {{ .Release.Namespace }}
annotations :
"helm.sh/hook": pre-install,pre-upgrade,post-install,post-upgrade
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded
labels :
{{- include "ingress-nginx.labels" . | nindent 4 }}
app.kubernetes.io/component : admission-webhook
{{- with .Values.controller.admissionWebhooks.patch.labels }}
{{- toYaml . | nindent 4 }}
{{- end }}
spec :
podSelector :
matchLabels :
2023-09-24 17:02:57 +02:00
{{- include "ingress-nginx.selectorLabels" . | nindent 6 }}
2023-01-08 22:59:28 +01:00
app.kubernetes.io/component : admission-webhook
policyTypes :
2023-09-24 17:02:57 +02:00
- Ingress
- Egress
2023-01-08 22:59:28 +01:00
egress :
2023-09-24 17:02:57 +02:00
- {}
2023-01-08 22:59:28 +01:00
{{- end }}