Skip to content

Commit

Permalink
Merge pull request #1169 from spiffxp/rm-n1-highmem-8-nodepool-from-p…
Browse files Browse the repository at this point in the history
…row-build

Remove old n1-highmem-8 nodepool from prow-build
  • Loading branch information
k8s-ci-robot authored Aug 22, 2020
2 parents c1e4fce + 8fc2232 commit 947de37
Showing 1 changed file with 2 additions and 23 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,26 +107,6 @@ module "prow_build_cluster" {
is_prod_cluster = "true"
}

module "prow_build_nodepool" {
source = "../../../modules/gke-nodepool"
project_name = local.project_id
cluster_name = module.prow_build_cluster.cluster.name
location = module.prow_build_cluster.cluster.location
name = "pool1"
initial_count = 12
min_count = 6
max_count = 30
# kind-ipv6 jobs need an ipv6 stack; COS doesn't provide one, so we need to
# use an UBUNTU image instead. Why the CONTAINERD variant? I don't know, but
# it's what k8s-prow-builds/prow (prow.k8s.io's existing google.com build
# cluster) is using today, so we're just going to follow that
image_type = "UBUNTU_CONTAINERD"
machine_type = "n1-highmem-8"
disk_size_gb = 250
disk_type = "pd-ssd"
service_account = module.prow_build_cluster.cluster_node_sa.email
}

module "prow_build_nodepool_n1_highmem_16" {
source = "../../../modules/gke-nodepool"
project_name = local.project_id
Expand All @@ -137,9 +117,8 @@ module "prow_build_nodepool_n1_highmem_16" {
min_count = 1
max_count = 30
# kind-ipv6 jobs need an ipv6 stack; COS doesn't provide one, so we need to
# use an UBUNTU image instead. Why the CONTAINERD variant? I don't know, but
# it's what k8s-prow-builds/prow (prow.k8s.io's existing google.com build
# cluster) is using today, so we're just going to follow that
# use an UBUNTU image instead. Keep parity with the existing google.com
# k8s-prow-builds/prow cluster by using the CONTAINERD variant
image_type = "UBUNTU_CONTAINERD"
machine_type = "n1-highmem-16"
disk_size_gb = 250
Expand Down

0 comments on commit 947de37

Please sign in to comment.