From 63cd36839810ac7d4d026955c00fc880abda9815 Mon Sep 17 00:00:00 2001 From: Markus Rudy Date: Wed, 20 Dec 2023 14:17:08 +0100 Subject: [PATCH] fixup! dev-docs: full L3 connectivity in VPN chart --- dev-docs/howto/vpn/helm/files/routing/pod-l3-setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-docs/howto/vpn/helm/files/routing/pod-l3-setup.sh b/dev-docs/howto/vpn/helm/files/routing/pod-l3-setup.sh index cd77d0481df..6252d0e4b86 100644 --- a/dev-docs/howto/vpn/helm/files/routing/pod-l3-setup.sh +++ b/dev-docs/howto/vpn/helm/files/routing/pod-l3-setup.sh @@ -14,7 +14,7 @@ cilium_agent=$(pidof cilium-agent) myip=$(ip -j addr show eth0 | jq -r '.[0].addr_info[] | select(.family == "inet") | .local') cilium() { - nsenter -t "${cilium_agent}" -a -r -w cilium "$@" + nsenter -t "${cilium_agent}" -a -r -w cilium "$@" } myendpoint=$(cilium endpoint get "ipv4:${myip}" | jq '.[0].id') @@ -32,7 +32,7 @@ rm -f /var/run/netns/root ip netns attach root 1 ip_root() { - ip netns exec root ip "$@" + ip netns exec root ip "$@" } lower_interface_id=$(ip -j l show eth0 | jq '.[0].link_index')