-
Notifications
You must be signed in to change notification settings - Fork 869
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
GCP: add nodepool for trusted cluster #7953
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Arnaud Meukam <ameukam@gmail.com>
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: ameukam The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Ran Plan for dir: Show OutputTerraform used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
+ create
Terraform will perform the following actions:
# module.prow_build_nodepool_n4_highmem_8.google_container_node_pool.node_pool will be created
+ resource "google_container_node_pool" "node_pool" {
+ cluster = (sensitive value)
+ id = (known after apply)
+ initial_node_count = 1
+ instance_group_urls = (known after apply)
+ location = (sensitive value)
+ managed_instance_group_urls = (known after apply)
+ max_pods_per_node = (known after apply)
+ name = (known after apply)
+ name_prefix = "trusted-pool2-"
+ node_count = (known after apply)
+ node_locations = [
+ "us-central1-a",
+ "us-central1-b",
+ "us-central1-f",
]
+ operation = (known after apply)
+ project = "k8s-infra-prow-build-trusted"
+ version = (known after apply)
+ autoscaling {
+ location_policy = (known after apply)
+ max_node_count = 6
+ min_node_count = 1
}
+ management {
+ auto_repair = true
+ auto_upgrade = true
}
+ network_config (known after apply)
+ node_config {
+ disk_size_gb = 200
+ disk_type = "hyperdisk-balanced"
+ effective_taints = (known after apply)
+ guest_accelerator = (known after apply)
+ image_type = "COS_CONTAINERD"
+ labels = (known after apply)
+ local_ssd_count = (known after apply)
+ logging_variant = (known after apply)
+ machine_type = "n4-highmem-8"
+ metadata = {
+ "disable-legacy-endpoints" = "true"
}
+ min_cpu_platform = (known after apply)
+ oauth_scopes = [
+ "https://www.googleapis.com/auth/cloud-platform",
]
+ preemptible = false
+ service_account = "gke-nodes-prow-build-trusted@k8s-infra-prow-build-trusted.iam.gserviceaccount.com"
+ spot = false
+ confidential_nodes (known after apply)
+ gcfs_config (known after apply)
+ kubelet_config (known after apply)
+ shielded_instance_config (known after apply)
+ workload_metadata_config {
+ mode = "GKE_METADATA"
}
}
+ upgrade_settings (known after apply)
}
Plan: 1 to add, 0 to change, 0 to destroy.
Plan: 1 to add, 0 to change, 0 to destroy.
|
/hold |
should we get results from the other cluster first? |
Not necessarily. Throughput, IOPS and node density are not comparable. The trusted cluster has really low occupation compared to the untrusted one. |
Signed-off-by: Arnaud Meukam ameukam@gmail.com