mirror of https://github.com/kubernetes/kops.git
./hack/update-expected.sh
This commit is contained in:
parent
13d53aa45d
commit
e4fdb20797
|
@ -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}"
|
||||
|
|
Loading…
Reference in New Issue