Skip to content

Commit

Permalink
Add IPv4 and IPv6 IP addressess for k8s-infra-prow.k8s.io
Browse files Browse the repository at this point in the history
Signed-off-by: Arnaud Meukam <[email protected]>
  • Loading branch information
ameukam committed Jul 28, 2021
1 parent ea5fcb4 commit f499b4f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions infra/gcp/clusters/projects/kubernetes-public/aaa/external-ips.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,21 @@ resource "google_compute_global_address" "k8s_io_ingress_canary_v6" {
ip_version = "IPV6"
}

// used by k8s-infra-prow.k8s.io
resource "google_compute_global_address" "k8s_infra_prow" {
project = data.google_project.project.project_id
name = "k8s-infra-prow"
address_type = "EXTERNAL"
}

// used by k8s-infra-prow.k8s.io (IPv6)
resource "google_compute_global_address" "k8s_infra_prow_v6" {
project = data.google_project.project.project_id
name = "k8s-infra-prow-v6"
address_type = "EXTERNAL"
ip_version = "IPV6"
}

// used by k8s.io
resource "google_compute_global_address" "k8s_io_ingress_prod" {
project = data.google_project.project.project_id
Expand Down

0 comments on commit f499b4f

Please sign in to comment.