1
+ {{- /*
2
+ Copyright VMware, Inc.
3
+ SPDX-License-Identifier : APACHE-2.0
4
+ */}}
5
+
6
+ {{- if .Values.networkPolicy.enabled }}
7
+ kind : NetworkPolicy
8
+ apiVersion : {{ include "common.capabilities.networkPolicy.apiVersion" . }}
9
+ metadata :
10
+ name : {{ template "common.names.fullname" . }}
11
+ namespace : {{ include "common.names.namespace" . | quote }}
12
+ labels : {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }}
13
+ app.kubernetes.io/component : controller
14
+ {{- if .Values.commonAnnotations }}
15
+ annotations : {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
16
+ {{- end }}
17
+ spec :
18
+ {{- $podLabels := include "common.tplvalues.merge" ( dict "values" ( list .Values.podLabels .Values.commonLabels ) "context" . ) }}
19
+ podSelector :
20
+ matchLabels : {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 6 }}
21
+ app.kubernetes.io/component : controller
22
+ policyTypes :
23
+ - Ingress
24
+ - Egress
25
+ {{- if .Values.networkPolicy.allowExternalEgress }}
26
+ egress :
27
+ - {}
28
+ {{- else }}
29
+ egress :
30
+ - ports :
31
+ - port : 53
32
+ protocol : UDP
33
+ - port : 53
34
+ protocol : TCP
35
+ {{- range $port := .Values.networkPolicy.kubeAPIServerPorts }}
36
+ - port : {{ $port }}
37
+ {{- end }}
38
+ {{- if .Values.networkPolicy.extraEgress }}
39
+ {{- include "common.tplvalues.render" ( dict "value" .Values.networkPolicy.extraEgress "context" $ ) | nindent 4 }}
40
+ {{- end }}
41
+ {{- end }}
42
+ ingress :
43
+ - ports :
44
+ - port : {{ .Values.containerPorts.http }}
45
+ {{- if not .Values.networkPolicy.allowExternal }}
46
+ from :
47
+ - podSelector :
48
+ matchLabels : {{- include "common.labels.matchLabels" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 14 }}
49
+ - podSelector :
50
+ matchLabels :
51
+ {{ template "common.names.fullname" . }}-client: "true"
52
+ {{- if .Values.networkPolicy.ingressNSMatchLabels }}
53
+ - namespaceSelector :
54
+ matchLabels :
55
+ {{- range $key, $value := .Values.networkPolicy.ingressNSMatchLabels }}
56
+ {{ $key | quote }}: {{ $value | quote }}
57
+ {{- end }}
58
+ {{- if .Values.networkPolicy.ingressNSPodMatchLabels }}
59
+ podSelector :
60
+ matchLabels :
61
+ {{- range $key, $value := .Values.networkPolicy.ingressNSPodMatchLabels }}
62
+ {{ $key | quote }}: {{ $value | quote }}
63
+ {{- end }}
64
+ {{- end }}
65
+ {{- end }}
66
+ {{- end }}
67
+ {{- end }}
68
+ {{- if .Values.networkPolicy.extraIngress }}
69
+ {{- include "common.tplvalues.render" ( dict "value" .Values.networkPolicy.extraIngress "context" $ ) | nindent 4 }}
70
+ {{- end }}
0 commit comments