33 lines
1.2 KiB
YAML
33 lines
1.2 KiB
YAML
|
{{- /*
|
||
|
Copyright Broadcom, Inc. All Rights Reserved.
|
||
|
SPDX-License-Identifier: APACHE-2.0
|
||
|
*/}}
|
||
|
|
||
|
{{- if and .Values.backup.enabled .Values.backup.cronjob.networkPolicy.enabled }}
|
||
|
kind: NetworkPolicy
|
||
|
apiVersion: {{ include "common.capabilities.networkPolicy.apiVersion" . }}
|
||
|
metadata:
|
||
|
name: {{ include "postgresql.v1.primary.fullname" . }}-pgdumpall
|
||
|
namespace: {{ include "common.names.namespace" . | quote }}
|
||
|
labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }}
|
||
|
app.kubernetes.io/component: pg_dumpall
|
||
|
{{- 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.backup.cronjob.podLabels .Values.commonLabels ) "context" . ) }}
|
||
|
podSelector:
|
||
|
matchLabels: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 6 }}
|
||
|
app.kubernetes.io/component: pg_dumpall
|
||
|
policyTypes:
|
||
|
- Egress
|
||
|
egress:
|
||
|
- ports:
|
||
|
- port: 5432
|
||
|
protocol: TCP
|
||
|
- port: 53
|
||
|
protocol: TCP
|
||
|
- port: 53
|
||
|
protocol: UDP
|
||
|
{{- end }}
|