./hack/update-expected.sh

This commit is contained in:
Peter Rifel 2024-08-06 22:31:48 -05:00
parent 13d53aa45d
commit e4fdb20797
No known key found for this signature in database
1 changed files with 10 additions and 6 deletions

View File

@ -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}"