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

feat(mastodon): Restrict outgoing network traffic for Mastodon

parent 9ff4d4d3
No related branches found
No related tags found
No related merge requests found
......@@ -6,5 +6,11 @@ resources:
- certificate.yaml
- mastodon-values.yaml
- slo.yaml
- ../../../shared/networkpolicies/deny-by-default-ingress.yaml
- ../../../shared/networkpolicies/deny-by-default-egress.yaml
- ../../../shared/networkpolicies/allow-to-same-namespace.yaml
- ../../../shared/networkpolicies/allow-to-public-web.yaml
- ../../../shared/networkpolicies/allow-to-kubedns.yaml
patchesStrategicMerge:
- database-override.yaml
- networkpolicy.yaml
---
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: allow-to-public-web
spec:
podSelector:
matchLabels:
app.kubernetes.io/name: mastodon
---
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: allow-to-same-namespace
spec:
podSelector: {}
egress:
- to:
- podSelector: {}
- to:
- namespaceSelector:
matchLabels:
kubernetes.io/metadata.name: kube-system
podSelector:
matchLabels:
k8s-app: kube-dns
ports:
- port: 53
protocol: UDP
- port: 53
protocol: TCP
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