You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
575 B
21 lines
575 B
{{- if .Values.webhook.networkPolicy.enabled }}
|
|
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: NetworkPolicy
|
|
metadata:
|
|
name: {{ template "webhook.fullname" . }}-allow-ingress
|
|
namespace: {{ include "cert-manager.namespace" . }}
|
|
spec:
|
|
ingress:
|
|
{{- with .Values.webhook.networkPolicy.ingress }}
|
|
{{- toYaml . | nindent 2 }}
|
|
{{- end }}
|
|
podSelector:
|
|
matchLabels:
|
|
app.kubernetes.io/name: {{ include "webhook.name" . }}
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
app.kubernetes.io/component: "webhook"
|
|
policyTypes:
|
|
- Ingress
|
|
|
|
{{- end }}
|
|
|