still fixing stuff

This commit is contained in:
Linus Vogel 2026-06-29 21:44:46 +02:00
parent 5e2551d268
commit c6f2567ca3

View File

@ -0,0 +1,23 @@
apiVersion: cilium.io/v2
kind: CiliumClusterwideNetworkPolicy
metadata:
# TODO: this should be a default deny rule once the istio stuff works
name: default-allow-all
spec:
endpointSelector: {} # Empty selector matches ALL endpoints
ingress:
- fromEntities:
#- "host" # Allow kubelet probes from the local node
- "all"
egress:
- toEntities:
#- "kube-apiserver" # Allow API server access
- "all"
# - toEndpoints:
# - matchLabels:
# "k8s:io.kubernetes.pod.namespace": kube-system
# k8s-app: kube-dns
# toPorts:
# - ports:
# - port: "53"
# protocol: UDP