Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade Cilium to 1.16 #517

Merged
merged 1 commit into from
Jan 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion kubernetes/kube-system/cilium/netpol.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,20 @@ specs:
- ports:
- protocol: TCP
port: "6443"
# allow connection to ciliums
# allow connection to peer service (cilium-agents)
- endpointSelector: *self
egress:
- toEndpoints:
- matchLabels:
k8s:io.kubernetes.pod.namespace: kube-system
k8s-app: kube-dns
toPorts:
- ports:
- protocol: ANY
port: "53"
rules:
dns:
- matchName: "hubble-peer.kube-system.svc.cluster.local."
- toEntities: ["host", "remote-node"]
toPorts:
- ports:
Expand Down
11 changes: 9 additions & 2 deletions kubernetes/kube-system/cilium/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ spec:
kind: HelmRepository
name: cilium
chart: cilium
version: 1.14.0-snapshot.4
version: 1.16.5
interval: 1h
maxHistory: 1
values:
ipam:
mode: kubernetes
kubeProxyReplacement: strict
kubeProxyReplacement: true
securityContext:
capabilities:
ciliumAgent:
Expand All @@ -37,6 +37,11 @@ spec:
- NET_ADMIN
- SYS_ADMIN
- SYS_RESOURCE
updateStrategy:
type: RollingUpdate
rollingUpdate:
maxSurge: 0
maxUnavailable: 1
cgroup:
autoMount:
enabled: false
Expand All @@ -49,3 +54,5 @@ spec:
enabled: true
ui:
enabled: true
envoy:
enabled: false
Loading