diff --git a/.changelog/13428.txt b/.changelog/13428.txt new file mode 100644 index 000000000000..70203bdbc713 --- /dev/null +++ b/.changelog/13428.txt @@ -0,0 +1,3 @@ +```release-note:bug +cni: Fixed a bug where loopback address was not set for all drivers +``` diff --git a/client/allocrunner/networking_bridge_linux.go b/client/allocrunner/networking_bridge_linux.go index 1c331bddd220..732dd85a783a 100644 --- a/client/allocrunner/networking_bridge_linux.go +++ b/client/allocrunner/networking_bridge_linux.go @@ -142,6 +142,9 @@ const nomadCNIConfigTemplate = `{ "cniVersion": "0.4.0", "name": "nomad", "plugins": [ + { + "type": "loopback" + }, { "type": "bridge", "bridge": "%s",