Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DNS entries for k8s-infra-prow.k8s.io #2404

Merged
merged 2 commits into from
Jul 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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