{{- /* Copyright Broadcom, Inc. All Rights Reserved. SPDX-License-Identifier: APACHE-2.0 */}} {{- if .Values.networkPolicy.enabled }} kind: NetworkPolicy apiVersion: {{ include "common.capabilities.networkPolicy.apiVersion" . }} metadata: name: {{ printf "%s-controller" (include "common.names.fullname" .) | trunc 63 | trimSuffix "-" }} namespace: {{ include "common.names.namespace" . | quote }} labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }} app.kubernetes.io/component: controller {{- if .Values.commonAnnotations }} annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }} {{- end }} spec: {{- $podLabels := include "common.tplvalues.merge" ( dict "values" ( list .Values.controller.podLabels .Values.commonLabels ) "context" . ) }} podSelector: matchLabels: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 6 }} app.kubernetes.io/component: controller policyTypes: - Ingress - Egress {{- if .Values.networkPolicy.allowExternalEgress }} egress: - {} {{- else }} egress: # Allow dns resolution - ports: - port: 53 protocol: UDP - port: 53 protocol: TCP # Allow access to kube-apiserver {{- range $port := .Values.networkPolicy.kubeAPIServerPorts }} - port: {{ $port }} {{- end }} {{- if .Values.networkPolicy.extraEgress }} {{- include "common.tplvalues.render" ( dict "value" .Values.rts.networkPolicy.extraEgress "context" $ ) | nindent 4 }} {{- end }} {{- end }} ingress: # Allow prometheus scrapes for metrics and webhook traffic - ports: - port: {{ .Values.controller.containerPorts.metrics }} protocol: TCP - port: 9443 protocol: TCP {{- if not .Values.networkPolicy.allowExternal }} from: - podSelector: matchLabels: {{ template "common.names.fullname" . }}-client: "true" - podSelector: matchLabels: {{- include "common.labels.matchLabels" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 14 }} {{- if .Values.networkPolicy.ingressNSMatchLabels }} - namespaceSelector: matchLabels: {{- range $key, $value := .Values.networkPolicy.ingressNSMatchLabels }} {{ $key | quote }}: {{ $value | quote }} {{- end }} {{- if .Values.networkPolicy.ingressNSPodMatchLabels }} podSelector: matchLabels: {{- range $key, $value := .Values.networkPolicy.ingressNSPodMatchLabels }} {{ $key | quote }}: {{ $value | quote }} {{- end }} {{- end }} {{- end }} {{- end }} {{- if .Values.networkPolicy.extraIngress }} {{- include "common.tplvalues.render" ( dict "value" .Values.networkPolicy.extraIngress "context" $ ) | nindent 4 }} {{- end }} {{- end }}