mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
26 lines
726 B
YAML
26 lines
726 B
YAML
|
{{- 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: {{ include "webhook.name" . }}
|
||
|
app.kubernetes.io/name: {{ include "webhook.name" . }}
|
||
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
||
|
app.kubernetes.io/component: "webhook"
|
||
|
{{- with .Values.webhook.podLabels }}
|
||
|
{{- toYaml . | nindent 6 }}
|
||
|
{{- end }}
|
||
|
policyTypes:
|
||
|
- Ingress
|
||
|
|
||
|
{{- end }}
|