-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f7a319a
commit ff251c6
Showing
4 changed files
with
56 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
provider "google" { | ||
project = var.project_name | ||
project = var.project_name | ||
} |
26 changes: 13 additions & 13 deletions
26
benchmarks/infra/65k-cpu-cluster/sample-tfvars/65k-sample.tfvars
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
project_name = "$PROJECT_ID" | ||
cluster_name = "gke-benchmark" | ||
region = "us-central1" | ||
min_master_version = "1.31.2" | ||
vpc_network="$NETWORK" | ||
node_locations = ["us-central1-a", "us-central1-b", "us-central1-c", "us-central1-f"] | ||
datapath_provider = "ADVANCED_DATAPATH" | ||
master_ipv4_cidr_block="172.16.0.0/28" | ||
ip_cidr_range= "10.0.0.0/9" | ||
cluster_ipv4_cidr_block = "/10" | ||
project_name = "$PROJECT_ID" | ||
cluster_name = "gke-benchmark" | ||
region = "us-central1" | ||
min_master_version = "1.31.2" | ||
vpc_network = "$NETWORK" | ||
node_locations = ["us-central1-a", "us-central1-b", "us-central1-c", "us-central1-f"] | ||
datapath_provider = "ADVANCED_DATAPATH" | ||
master_ipv4_cidr_block = "172.16.0.0/28" | ||
ip_cidr_range = "10.0.0.0/9" | ||
cluster_ipv4_cidr_block = "/10" | ||
services_ipv4_cidr_block = "/18" | ||
node_pool_count = 16 | ||
node_pool_size = 1000 | ||
initial_node_count = 250 | ||
node_pool_count = 16 | ||
node_pool_size = 1000 | ||
initial_node_count = 250 | ||
node_pool_create_timeout = "60m" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,68 +1,68 @@ | ||
variable "project_name" { | ||
type = string | ||
type = string | ||
description = "Name of the project" | ||
} | ||
|
||
variable "cluster_name" { | ||
type = string | ||
type = string | ||
description = "Name of the cluster" | ||
} | ||
|
||
variable "region" { | ||
type = string | ||
type = string | ||
description = "Region to deploy the cluster" | ||
} | ||
|
||
variable "vpc_network"{ | ||
type = string | ||
description ="Name of the VPC network to use for the cluster" | ||
variable "vpc_network" { | ||
type = string | ||
description = "Name of the VPC network to use for the cluster" | ||
} | ||
variable "master_ipv4_cidr_block"{ | ||
type = string | ||
description = " " | ||
variable "master_ipv4_cidr_block" { | ||
type = string | ||
description = " " | ||
} | ||
variable "cluster_ipv4_cidr_block"{ | ||
type = string | ||
variable "cluster_ipv4_cidr_block" { | ||
type = string | ||
} | ||
variable "services_ipv4_cidr_block"{ | ||
type = string | ||
variable "services_ipv4_cidr_block" { | ||
type = string | ||
} | ||
variable "ip_cidr_range"{ | ||
type = string | ||
description = " " | ||
variable "ip_cidr_range" { | ||
type = string | ||
description = " " | ||
} | ||
variable "min_master_version" { | ||
type = string | ||
type = string | ||
description = "Minimum master version for the cluster" | ||
} | ||
|
||
variable "node_locations" { | ||
type = list(string) | ||
type = list(string) | ||
description = "List of zones where nodes will be deployed" | ||
} | ||
|
||
variable "initial_node_count" { | ||
type = number | ||
type = number | ||
description = "Initial number of nodes in the cluster" | ||
} | ||
|
||
variable "datapath_provider" { | ||
type = string | ||
type = string | ||
description = "Datapath provider for the cluster (e.g., 'LEGACY_DATAPATH' or 'ADVANCED_DATAPATH')" | ||
} | ||
|
||
|
||
variable "node_pool_count" { | ||
type = number | ||
type = number | ||
description = "Number of additional node pools to create" | ||
} | ||
|
||
variable "node_pool_size" { | ||
type = number | ||
type = number | ||
description = "Number of nodes in each additional node pool" | ||
} | ||
|
||
variable "node_pool_create_timeout" { | ||
type = string | ||
type = string | ||
description = "Timeout for creating node pools" | ||
} |