Skip to content
Snippets Groups Projects
Verified Commit ebb5f273 authored by Sheogorath's avatar Sheogorath :european_castle:
Browse files

fix(dns): Add missing network policy for DoT

parent 7babf902
No related branches found
No related tags found
No related merge requests found
......@@ -16,3 +16,19 @@ spec:
port: 53
- protocol: TCP
port: 53
---
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: allow-from-everywhere-to-dot
spec:
podSelector:
matchLabels:
app: resolver
ingress:
- from:
- ipBlock:
cidr: 0.0.0.0/0
ports:
- protocol: TCP
port: 853
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment