forked from GoogleCloudPlatform/professional-services
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clusters.tf
141 lines (139 loc) · 5.1 KB
/
clusters.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/**
* Copyright 2021 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
# create the clusters
# https://registry.terraform.io/modules/terraform-google-modules/kubernetes-engine/google/latest/submodules/private-cluster
module "gke-cluster3" {
source = "terraform-google-modules/kubernetes-engine/google//modules/private-cluster"
version = "12.3.0"
project_id = var.project_id
name = "cluster3"
region = var.region
regional = true
release_channel = "REGULAR"
network = google_compute_network.asm-vpc-3.name
subnetwork = google_compute_subnetwork.cluster3.name
remove_default_node_pool = true
identity_namespace = "${var.project_id}.svc.id.goog"
ip_range_pods = google_compute_subnetwork.cluster3.secondary_ip_range.0.range_name
ip_range_services = google_compute_subnetwork.cluster3.secondary_ip_range.1.range_name
http_load_balancing = false
network_policy = false
enable_private_endpoint = true
enable_private_nodes = true
master_ipv4_cidr_block = "192.168.2.0/28"
master_authorized_networks = [
{
cidr_block = local.bastion_cidr
display_name = "bastion-admin"
},
{
cidr_block = "10.185.192.0/18"
display_name = "Cluster4 pods"
},
]
cluster_resource_labels = { "mesh_id" : local.mesh_id }
node_metadata = "GKE_METADATA_SERVER"
node_pools = [
{
name = "cluster3-node-pool"
autoscaling = true
min_count = 1
max_count = 5
auto_repair = true
auto_upgrade = true
machine_type = "e2-standard-4"
preemptible = false
},
]
node_pools_oauth_scopes = {
all = [
"https://www.googleapis.com/auth/compute",
"https://www.googleapis.com/auth/devstorage.read_only",
"https://www.googleapis.com/auth/logging.write",
"https://www.googleapis.com/auth/monitoring",
"https://www.googleapis.com/auth/trace.append",
"https://www.googleapis.com/auth/cloud_debugger",
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/servicecontrol",
"https://www.googleapis.com/auth/service.management.readonly"
]
}
node_pools_tags = {
all = [
"cluster3",
]
}
}
module "gke-cluster4" {
source = "terraform-google-modules/kubernetes-engine/google//modules/private-cluster"
version = "12.3.0"
project_id = var.project_id
name = "cluster4"
region = var.region
regional = true
release_channel = "REGULAR"
network = google_compute_network.asm-vpc-3.name
subnetwork = google_compute_subnetwork.cluster4.name
remove_default_node_pool = true
identity_namespace = "${var.project_id}.svc.id.goog"
ip_range_pods = google_compute_subnetwork.cluster4.secondary_ip_range.0.range_name
ip_range_services = google_compute_subnetwork.cluster4.secondary_ip_range.1.range_name
http_load_balancing = false
network_policy = false
enable_private_endpoint = true
enable_private_nodes = true
master_ipv4_cidr_block = "192.168.3.0/28"
master_authorized_networks = [
{
cidr_block = local.bastion_cidr
display_name = "bastion-admin"
},
{
cidr_block = "10.185.128.0/18"
display_name = "Cluster3 pods"
},
]
cluster_resource_labels = { "mesh_id" : local.mesh_id }
node_metadata = "GKE_METADATA_SERVER"
node_pools = [
{
name = "cluster4-node-pool"
autoscaling = true
min_count = 1
max_count = 5
auto_repair = true
auto_upgrade = true
machine_type = "e2-standard-4"
preemptible = false
},
]
node_pools_oauth_scopes = {
all = [
"https://www.googleapis.com/auth/compute",
"https://www.googleapis.com/auth/devstorage.read_only",
"https://www.googleapis.com/auth/logging.write",
"https://www.googleapis.com/auth/monitoring",
"https://www.googleapis.com/auth/trace.append",
"https://www.googleapis.com/auth/cloud_debugger",
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/servicecontrol",
"https://www.googleapis.com/auth/service.management.readonly"
]
}
node_pools_tags = {
all = ["cluster4",]
}
}