mirror of https://github.com/kubernetes/kops.git
Run hack/update-expected.sh
This commit is contained in:
parent
71d0dfdc21
commit
eded9c1c4b
|
@ -371,6 +371,10 @@ resource "google_compute_firewall" "node-to-master-ha-gce-example-com" {
|
||||||
ports = ["443"]
|
ports = ["443"]
|
||||||
protocol = "tcp"
|
protocol = "tcp"
|
||||||
}
|
}
|
||||||
|
allow {
|
||||||
|
ports = ["10250"]
|
||||||
|
protocol = "tcp"
|
||||||
|
}
|
||||||
allow {
|
allow {
|
||||||
ports = ["3988"]
|
ports = ["3988"]
|
||||||
protocol = "tcp"
|
protocol = "tcp"
|
||||||
|
|
|
@ -307,6 +307,10 @@ resource "google_compute_firewall" "node-to-master-minimal-example-com" {
|
||||||
ports = ["443"]
|
ports = ["443"]
|
||||||
protocol = "tcp"
|
protocol = "tcp"
|
||||||
}
|
}
|
||||||
|
allow {
|
||||||
|
ports = ["10250"]
|
||||||
|
protocol = "tcp"
|
||||||
|
}
|
||||||
allow {
|
allow {
|
||||||
ports = ["3988"]
|
ports = ["3988"]
|
||||||
protocol = "tcp"
|
protocol = "tcp"
|
||||||
|
|
|
@ -283,6 +283,10 @@ resource "google_compute_firewall" "node-to-master-minimal-gce-example-com" {
|
||||||
ports = ["443"]
|
ports = ["443"]
|
||||||
protocol = "tcp"
|
protocol = "tcp"
|
||||||
}
|
}
|
||||||
|
allow {
|
||||||
|
ports = ["10250"]
|
||||||
|
protocol = "tcp"
|
||||||
|
}
|
||||||
allow {
|
allow {
|
||||||
ports = ["3988"]
|
ports = ["3988"]
|
||||||
protocol = "tcp"
|
protocol = "tcp"
|
||||||
|
|
|
@ -261,6 +261,10 @@ resource "google_compute_firewall" "node-to-master-minimal-gce-ilb-example-com"
|
||||||
ports = ["443"]
|
ports = ["443"]
|
||||||
protocol = "tcp"
|
protocol = "tcp"
|
||||||
}
|
}
|
||||||
|
allow {
|
||||||
|
ports = ["10250"]
|
||||||
|
protocol = "tcp"
|
||||||
|
}
|
||||||
allow {
|
allow {
|
||||||
ports = ["3988"]
|
ports = ["3988"]
|
||||||
protocol = "tcp"
|
protocol = "tcp"
|
||||||
|
|
|
@ -269,6 +269,10 @@ resource "google_compute_firewall" "node-to-master-minimal-gce-with-a-very-very-
|
||||||
ports = ["443"]
|
ports = ["443"]
|
||||||
protocol = "tcp"
|
protocol = "tcp"
|
||||||
}
|
}
|
||||||
|
allow {
|
||||||
|
ports = ["10250"]
|
||||||
|
protocol = "tcp"
|
||||||
|
}
|
||||||
allow {
|
allow {
|
||||||
ports = ["3988"]
|
ports = ["3988"]
|
||||||
protocol = "tcp"
|
protocol = "tcp"
|
||||||
|
|
|
@ -283,6 +283,10 @@ resource "google_compute_firewall" "node-to-master-minimal-gce-with-a-very-very-
|
||||||
ports = ["443"]
|
ports = ["443"]
|
||||||
protocol = "tcp"
|
protocol = "tcp"
|
||||||
}
|
}
|
||||||
|
allow {
|
||||||
|
ports = ["10250"]
|
||||||
|
protocol = "tcp"
|
||||||
|
}
|
||||||
allow {
|
allow {
|
||||||
ports = ["3988"]
|
ports = ["3988"]
|
||||||
protocol = "tcp"
|
protocol = "tcp"
|
||||||
|
|
|
@ -275,6 +275,10 @@ resource "google_compute_firewall" "node-to-master-minimal-gce-private-example-c
|
||||||
ports = ["443"]
|
ports = ["443"]
|
||||||
protocol = "tcp"
|
protocol = "tcp"
|
||||||
}
|
}
|
||||||
|
allow {
|
||||||
|
ports = ["10250"]
|
||||||
|
protocol = "tcp"
|
||||||
|
}
|
||||||
allow {
|
allow {
|
||||||
ports = ["3988"]
|
ports = ["3988"]
|
||||||
protocol = "tcp"
|
protocol = "tcp"
|
||||||
|
|
Loading…
Reference in New Issue