From 4511d5447ec99cb7369ade600a16e9508f590c33 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Mon, 22 Aug 2022 20:00:47 -0500 Subject: [PATCH] vm-hosts: Add missing kube.network config When I added the *systemd-networkd* configuration for the Kubernetes network interface on the VM hosts, I only added the `.netdev` configuration and forgot the `.network` part. Without the latter, *systemd-networkd* creates the interface, but does not configure or activate it, so it is not able to handle traffic for the VMs attached to the bridge. --- group_vars/vm-hosts.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/group_vars/vm-hosts.yml b/group_vars/vm-hosts.yml index 0f2d2c1..7b8438e 100644 --- a/group_vars/vm-hosts.yml +++ b/group_vars/vm-hosts.yml @@ -179,6 +179,13 @@ vmhost_networks: Description: pyrocufflink.blue VM network bridge DHCP: 'no' LinkLocalAddressing: 'no' +- name: 60-kube + Match: + Name: kube + Network: + Description: Kubernetes network bridge + DHCP: 'no' + LinkLocalAddressing: 'no' - name: 60-mgmt Match: Name: mgmt