-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgke.tf
40 lines (34 loc) · 1005 Bytes
/
gke.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
resource "google_container_cluster" "primary" {
name = "quangpham5-cluster-01"
location = var.zone
remove_default_node_pool = true
initial_node_count = 1
network = google_compute_network.quangpham5.self_link
subnetwork = google_compute_subnetwork.asia-east1.self_link
networking_mode = "VPC_NATIVE"
ip_allocation_policy {
services_secondary_range_name = "gke-services"
cluster_secondary_range_name = "gke-pods"
}
}
resource "google_container_node_pool" "primary_preemptible_nodes" {
name = "quangpham5-pool-1"
location = var.zone
cluster = google_container_cluster.primary.name
node_count = 3
node_config {
preemptible = false
spot = true
machine_type = "e2-medium"
disk_size_gb = 10
disk_type = "pd-standard"
image_type = "COS_CONTAINERD"
tags = [
"http-server",
"https-server",
]
oauth_scopes = [
"https://www.googleapis.com/auth/cloud-platform"
]
}
}