Element-web manifests

This commit is contained in:
2025-12-22 10:45:12 +01:00
parent 2553d21306
commit 45b4768910
6 changed files with 155 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: matrix-landing-page-networkpolicy
spec:
podSelector:
matchLabels:
matrix-service: webclient
egress:
# Allow all egress
# - {}
# Allow egress only to public networks
# - to:
# - ipBlock:
# cidr: 0.0.0.0/0
# except:
# - 10.0.0.0/8
# - 172.16.0.0/12
# - 192.168.0.0/16
ingress:
# - from:
# - namespaceSelector:
# matchLabels:
# ns-name: <NS>
# podSelector:
# matchLabels:
# podDomain: <reverseProxyPodLabel>
# ports:
# - protocol: TCP
# port: 80
policyTypes:
- Ingress
- Egress