Skip to content

Commit

Permalink
Merge pull request #2404 from ameukam/k8s-infra-prow-dns
Browse files Browse the repository at this point in the history
DNS entries for k8s-infra-prow.k8s.io
  • Loading branch information
k8s-ci-robot authored Jul 28, 2021
2 parents f9b78a2 + fdf8ae6 commit 2a91ff8
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 4 deletions.
10 changes: 6 additions & 4 deletions dns/zone-configs/k8s.io._0_base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,12 @@ issue:
issues:
type: CNAME
value: redirect.k8s.io.
#wg-k8s-infra
k8s-infra-prow:
- type: A
value: 34.117.224.94 # Hosted on GKE cluster aaa
- type: AAAA
value: "2600:1901:0:b267::" # Hosted on GKE cluster aaa
kep:
type: CNAME
value: redirect.k8s.io.
Expand Down Expand Up @@ -203,10 +209,6 @@ prow-canary:
monitoring.prow-canary:
type: A
value: 34.102.128.31
#wg-k8s-infra (@ameukam)
prow-staging:
type: A
value: 35.190.121.209
prs:
type: CNAME
value: redirect.k8s.io.
Expand Down
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 2a91ff8

Please sign in to comment.