Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ spec:
serviceAccountName: kube-router
containers:
- name: kube-router
image: docker.io/cloudnativelabs/kube-router:v2.5.0
image: docker.io/cloudnativelabs/kube-router:v2.7.1
args:
- --run-router=true
- --run-firewall=true
Expand Down Expand Up @@ -110,14 +110,14 @@ spec:
mountPath: /run/xtables.lock
readOnly: false
- name: rt-tables
mountPath: /usr/share/iproute2/rt_tables
mountPath: /etc/iproute2/rt_tables
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this may need to stay unchanged. See #17945.

readOnly: false
- name: containerd-sock
mountPath: /run/containerd/containerd.sock
readOnly: true
initContainers:
- name: install-cni
image: docker.io/cloudnativelabs/kube-router:v2.5.0
image: docker.io/cloudnativelabs/kube-router:v2.7.1
command:
- /bin/sh
- -c
Expand Down Expand Up @@ -158,7 +158,7 @@ spec:
type: FileOrCreate
- name: rt-tables
hostPath:
path: /usr/share/iproute2/rt_tables
path: /etc/iproute2/rt_tables
type: FileOrCreate
- name: containerd-sock
hostPath:
Expand Down
Loading