Skip to content

Commit

Permalink
feat: egress netpols
Browse files Browse the repository at this point in the history
  • Loading branch information
wittdennis committed Dec 27, 2024
1 parent cb76bff commit 2681fc9
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 49 deletions.
42 changes: 21 additions & 21 deletions cloud/networking/network-policies/allow-kube-apiserver-traffic.yaml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
# ---
# apiVersion: cilium.io/v2
# kind: CiliumNetworkPolicy
# metadata:
# name: allow-kube-apiserver-traffic
# spec:
# endpointSelector:
# matchLabels:
# network-policy/allow-kube-apiserver-traffic: apply
# ingress:
# - fromEntities:
# - kube-apiserver
# egress:
# - toEntities:
# - kube-apiserver
# toPorts:
# - ports:
# - port: "443"
# protocol: TCP
# rules:
# http: [{}]
---
apiVersion: cilium.io/v2
kind: CiliumNetworkPolicy
metadata:
name: allow-kube-apiserver-traffic
spec:
endpointSelector:
matchLabels:
network-policy/allow-kube-apiserver-traffic: apply
ingress:
- fromEntities:
- kube-apiserver
egress:
- toEntities:
- kube-apiserver
# toPorts:
# - ports:
# - port: "443"
# protocol: TCP
# rules:
# http: [{}]
56 changes: 28 additions & 28 deletions cloud/networking/network-policies/default-deny-egress.yaml
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
# ---
# apiVersion: cilium.io/v2
# kind: CiliumNetworkPolicy
# metadata:
# name: default-deny-egress
# namespace: foundry
# spec:
# endpointSelector: {}
# egress:
# # DNS
# - toEndpoints:
# - matchLabels:
# io.kubernetes.pod.namespace: kube-system
# k8s-app: kube-dns
# toPorts:
# - ports:
# - port: "53"
# protocol: UDP
# rules:
# dns:
# - matchPattern: "*"
# # ingress-nginx
# - toEndpoints:
# - matchLabels:
# app.kubernetes.io/name: ingress-nginx
# app.kubernetes.io/instance: ingress-nginx
# app.kubernetes.io/component: controller
# io.kubernetes.pod.namespace: ingress-nginx
---
apiVersion: cilium.io/v2
kind: CiliumNetworkPolicy
metadata:
name: default-deny-egress
namespace: foundry
spec:
endpointSelector: {}
egress:
# DNS
- toEndpoints:
- matchLabels:
io.kubernetes.pod.namespace: kube-system
k8s-app: kube-dns
toPorts:
- ports:
- port: "53"
protocol: UDP
rules:
dns:
- matchPattern: "*"
# ingress-nginx
- toEndpoints:
- matchLabels:
app.kubernetes.io/name: ingress-nginx
app.kubernetes.io/instance: ingress-nginx
app.kubernetes.io/component: controller
io.kubernetes.pod.namespace: ingress-nginx

0 comments on commit 2681fc9

Please sign in to comment.