Skip to content

Commit 5928ebe

Browse files
authored
Merge pull request #724 from artem-zinnatullin/az/fix-cilium-lxc-interface-filtering
Fix Cilium lxc* network interface filtering crash
2 parents 9f07ce2 + 9b4541d commit 5928ebe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

templates/master_install_script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if [ "{{ private_network_enabled }}" = "true" ]; then
1717
NETWORK_INTERFACE=$(
1818
ip -o link show |
1919
awk -F': ' '/mtu (1450|1280)/ {print $2}' |
20-
grep -Ev 'cilium|br|flannel|docker|veth' |
20+
grep -Ev 'cilium|lxc|br|flannel|docker|veth' |
2121
head -n1
2222
)
2323

templates/worker_install_script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if [ "{{ private_network_enabled }}" = "true" ]; then
1717
NETWORK_INTERFACE=$(
1818
ip -o link show |
1919
awk -F': ' '/mtu (1450|1280)/ {print $2}' |
20-
grep -Ev 'cilium|br|flannel|docker|veth' |
20+
grep -Ev 'cilium|lxc|br|flannel|docker|veth' |
2121
head -n1
2222
)
2323

0 commit comments

Comments
 (0)