From 1c9536bfae59b69fc608578e5a320489b01f2ce9 Mon Sep 17 00:00:00 2001 From: Peter Rifel Date: Tue, 6 Aug 2024 22:31:48 -0500 Subject: [PATCH] ./hack/update-expected.sh --- .../update_cluster/minimal_hetzner/kubernetes.tf | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/tests/integration/update_cluster/minimal_hetzner/kubernetes.tf b/tests/integration/update_cluster/minimal_hetzner/kubernetes.tf index c4045deee5254..987de4e89eef5 100644 --- a/tests/integration/update_cluster/minimal_hetzner/kubernetes.tf +++ b/tests/integration/update_cluster/minimal_hetzner/kubernetes.tf @@ -235,9 +235,12 @@ resource "hcloud_server" "master-fsn1" { count = 1 image = "ubuntu-20.04" labels = { - "kops.k8s.io/cluster" = "minimal.example.com" - "kops.k8s.io/instance-group" = "master-fsn1" - "kops.k8s.io/instance-role" = "ControlPlane" + "kops.k8s.io/cluster" = "minimal.example.com" + "kops.k8s.io/instance-group" = "master-fsn1" + "kops.k8s.io/instance-role" = "ControlPlane" + "kops.k8s.io/node-label/kops.k8s.io/kops-controller-pki" = "" + "kops.k8s.io/node-label/node-role.kubernetes.io/control-plane" = "" + "kops.k8s.io/node-label/node.kubernetes.io/exclude-from-external-load-balancers" = "" } location = "fsn1" name = "master-fsn1-${count.index}" @@ -257,9 +260,10 @@ resource "hcloud_server" "nodes-fsn1" { count = 1 image = "ubuntu-20.04" labels = { - "kops.k8s.io/cluster" = "minimal.example.com" - "kops.k8s.io/instance-group" = "nodes-fsn1" - "kops.k8s.io/instance-role" = "Node" + "kops.k8s.io/cluster" = "minimal.example.com" + "kops.k8s.io/instance-group" = "nodes-fsn1" + "kops.k8s.io/instance-role" = "Node" + "kops.k8s.io/node-label/node-role.kubernetes.io/node" = "" } location = "fsn1" name = "nodes-fsn1-${count.index}"