policy-generator/cmd/policygen/templates/netpol/namespace/dns.yaml
Erik Brakkee b8dfaa55a4 fixed issues with schema of network policy
also fixed encoding of matahLabels. Now using json format so that it
also works for empty maps.
2025-01-03 00:10:32 +01:00

19 lines
315 B
YAML

{{- if not .Open }}
---
kind: NetworkPolicy
apiVersion: networking.k8s.io/v1
metadata:
name: allow-dns-in-namespace
namespace: {{ .Name }}
spec:
podSelector: {}
policyTypes:
- Egress
egress:
- ports:
- port: 53
protocol: TCP
- port: 53
protocol: UDP
{{- end }}