-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkubernetes.tf
More file actions
450 lines (366 loc) · 10.5 KB
/
Copy pathkubernetes.tf
File metadata and controls
450 lines (366 loc) · 10.5 KB
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
locals {
k8s_node_metadata = local.os_user_pubkey == null ? null : { "ssh-keys" : "${var.os_user}:${local.os_user_pubkey}" }
k8s_node_cidr_blocks = flatten([
yandex_vpc_subnet.k8s_subnet_1.v4_cidr_blocks,
yandex_vpc_subnet.k8s_subnet_2.v4_cidr_blocks,
yandex_vpc_subnet.k8s_subnet_3.v4_cidr_blocks,
])
k8s_node_subnet_ids = flatten([
yandex_vpc_subnet.k8s_subnet_1.id,
yandex_vpc_subnet.k8s_subnet_2.id,
yandex_vpc_subnet.k8s_subnet_3.id,
])
}
resource "yandex_iam_service_account" "k8s_cluster_sa" {
name = "${var.k8s_cluster_name}-cluster-sa${local.name_suffix}"
description = "service account for kubernetes cluster"
folder_id = local.folder_id
}
resource "yandex_iam_service_account" "k8s_node_sa" {
name = "${var.k8s_cluster_name}-node-sa${local.name_suffix}"
description = "service account for kubernetes nodes"
folder_id = local.folder_id
}
resource "yandex_resourcemanager_folder_iam_member" "k8s_cluster_sa_compute" {
for_each = toset(["k8s.clusters.agent"])
folder_id = local.folder_id
role = each.key
member = "serviceAccount:${yandex_iam_service_account.k8s_cluster_sa.id}"
}
resource "yandex_resourcemanager_folder_iam_member" "k8s_cluster_sa_vpc" {
for_each = toset([
"vpc.publicAdmin",
"vpc.privateAdmin",
"vpc.bridgeAdmin",
"vpc.user",
"load-balancer.admin",
"logging.writer"
])
folder_id = local.folder_id
role = each.key
member = "serviceAccount:${yandex_iam_service_account.k8s_cluster_sa.id}"
}
resource "yandex_resourcemanager_folder_iam_member" "k8s_node_sa_cr_puller" {
for_each = toset(["container-registry.images.puller"])
folder_id = local.folder_id
role = each.key
member = "serviceAccount:${yandex_iam_service_account.k8s_node_sa.id}"
}
resource "yandex_kms_symmetric_key" "k8s_key" {
name = "${var.k8s_cluster_name}-key${local.name_suffix}"
description = "k8s cluster key"
default_algorithm = "AES_256"
rotation_period = "8760h"
folder_id = local.folder_id
}
resource "yandex_kubernetes_cluster" "cluster" {
name = "${var.k8s_cluster_name}${local.name_suffix}"
description = var.k8s_cluster_description
network_id = local.network_id
folder_id = local.folder_id
cluster_ipv4_range = var.k8s_cluster_ipv4_range
service_ipv4_range = var.k8s_service_ipv4_range
master {
version = var.k8s_version
master_location {
subnet_id = yandex_vpc_subnet.k8s_subnet_1.id
zone = var.zone_1
}
master_location {
subnet_id = yandex_vpc_subnet.k8s_subnet_2.id
zone = var.zone_2
}
master_location {
subnet_id = yandex_vpc_subnet.k8s_subnet_3.id
zone = var.zone_3
}
public_ip = true
security_group_ids = [yandex_vpc_security_group.k8s_cluster.id]
maintenance_policy {
auto_upgrade = true
maintenance_window {
day = "monday"
start_time = "4:00"
duration = "2h"
}
}
master_logging {
enabled = true
folder_id = local.folder_id
kube_apiserver_enabled = true
cluster_autoscaler_enabled = true
events_enabled = true
audit_enabled = false
}
}
service_account_id = yandex_iam_service_account.k8s_cluster_sa.id
node_service_account_id = yandex_iam_service_account.k8s_node_sa.id
release_channel = "RAPID"
kms_provider {
key_id = yandex_kms_symmetric_key.k8s_key.id
}
depends_on = [
yandex_resourcemanager_folder_iam_member.k8s_cluster_sa_compute,
yandex_resourcemanager_folder_iam_member.k8s_cluster_sa_vpc,
yandex_resourcemanager_folder_iam_member.k8s_node_sa_cr_puller,
null_resource.sg_k8s_cluster,
null_resource.sg_k8s_nodes,
]
}
resource "yandex_kubernetes_node_group" "cluster_node_group_1" {
cluster_id = yandex_kubernetes_cluster.cluster.id
name = "${var.k8s_node_name_prefix}${local.name_suffix}-1"
description = "${var.k8s_node_name_prefix} nodes in ${var.zone_1}"
version = var.k8s_version
instance_template {
platform_id = "standard-v3"
network_interface {
nat = var.k8s_node_nat
subnet_ids = [yandex_vpc_subnet.k8s_subnet_1.id]
security_group_ids = [yandex_vpc_security_group.k8s_nodes.id]
}
resources {
memory = var.k8s_node_mem
cores = var.k8s_node_cores
}
boot_disk {
type = var.k8s_node_disk_type
size = var.k8s_node_disk_size
}
scheduling_policy {
preemptible = var.k8s_node_preemptible
}
container_runtime {
type = "containerd"
}
metadata = local.k8s_node_metadata
}
scale_policy {
fixed_scale {
size = var.k8s_nodes_count
}
}
allocation_policy {
location {
zone = yandex_vpc_subnet.k8s_subnet_1.zone
}
}
deploy_policy {
max_expansion = 0
max_unavailable = 1
}
maintenance_policy {
auto_upgrade = true
auto_repair = true
maintenance_window {
day = "monday"
start_time = "5:00"
duration = "2h"
}
}
}
resource "yandex_kubernetes_node_group" "cluster_node_group_2" {
cluster_id = yandex_kubernetes_cluster.cluster.id
name = "${var.k8s_node_name_prefix}${local.name_suffix}-2"
description = "${var.k8s_node_name_prefix} nodes in ${var.zone_2}"
version = var.k8s_version
instance_template {
platform_id = "standard-v3"
network_interface {
nat = var.k8s_node_nat
subnet_ids = [yandex_vpc_subnet.k8s_subnet_2.id]
security_group_ids = [yandex_vpc_security_group.k8s_nodes.id]
}
resources {
memory = var.k8s_node_mem
cores = var.k8s_node_cores
}
boot_disk {
type = var.k8s_node_disk_type
size = var.k8s_node_disk_size
}
scheduling_policy {
preemptible = var.k8s_node_preemptible
}
container_runtime {
type = "containerd"
}
metadata = local.k8s_node_metadata
}
scale_policy {
fixed_scale {
size = var.k8s_nodes_count
}
}
allocation_policy {
location {
zone = yandex_vpc_subnet.k8s_subnet_2.zone
}
}
deploy_policy {
max_expansion = 0
max_unavailable = 1
}
maintenance_policy {
auto_upgrade = true
auto_repair = true
maintenance_window {
day = "monday"
start_time = "3:00"
duration = "2h"
}
}
}
resource "yandex_kubernetes_node_group" "cluster_node_group_3" {
cluster_id = yandex_kubernetes_cluster.cluster.id
name = "${var.k8s_node_name_prefix}${local.name_suffix}-3"
description = "${var.k8s_node_name_prefix} nodes in ${var.zone_3}"
version = var.k8s_version
instance_template {
platform_id = "standard-v3"
network_interface {
nat = var.k8s_node_nat
subnet_ids = [yandex_vpc_subnet.k8s_subnet_3.id]
security_group_ids = [yandex_vpc_security_group.k8s_nodes.id]
}
resources {
memory = var.k8s_node_mem
cores = var.k8s_node_cores
}
boot_disk {
type = var.k8s_node_disk_type
size = var.k8s_node_disk_size
}
scheduling_policy {
preemptible = var.k8s_node_preemptible
}
container_runtime {
type = "containerd"
}
metadata = local.k8s_node_metadata
}
scale_policy {
fixed_scale {
size = var.k8s_nodes_count
}
}
allocation_policy {
location {
zone = yandex_vpc_subnet.k8s_subnet_3.zone
}
}
deploy_policy {
max_expansion = 0
max_unavailable = 1
}
maintenance_policy {
auto_upgrade = true
auto_repair = true
maintenance_window {
day = "monday"
start_time = "1:00"
duration = "2h"
}
}
}
resource "null_resource" "kubernetes" {
depends_on = [
yandex_kubernetes_cluster.cluster,
yandex_kubernetes_node_group.cluster_node_group_1,
yandex_kubernetes_node_group.cluster_node_group_2,
yandex_kubernetes_node_group.cluster_node_group_3
]
}
###################################################################
############################ Variables ############################
###################################################################
variable "k8s_cluster_name" {
type = string
description = "Kubernetes cluster name"
default = "main"
}
variable "k8s_cluster_description" {
type = string
description = "Kubernetes cluster description"
default = "Main kubernetes cluster"
}
variable "k8s_subnet_cidr_1" {
type = string
description = "subnet cidr 1"
default = "10.0.1.0/24"
}
variable "k8s_subnet_cidr_2" {
type = string
description = "subnet cidr 2"
default = "10.0.2.0/24"
}
variable "k8s_subnet_cidr_3" {
type = string
description = "subnet cidr 3"
default = "10.0.3.0/24"
}
variable "k8s_cluster_ipv4_range" {
type = string
description = "Kubernetes cluster pod ipv4 range"
default = "10.208.0.0/16"
}
variable "k8s_service_ipv4_range" {
type = string
description = "Kubernetes cluster service ipv4 range"
default = "10.224.0.0/16"
}
variable "k8s_version" {
type = string
description = "Kubernetes cluster version"
default = "1.30"
}
variable "k8s_nodes_ssh_allowed_ips" {
type = list(string)
description = "Networks with ssh access to kubernetes cluster"
default = null
}
variable "k8s_cluster_allowed_ips" {
type = list(string)
description = "Networks with ssh access to kubernetes cluster"
default = ["0.0.0.0/0"]
}
variable "k8s_node_cores" {
type = string
description = "Kubernetes node cpu capacity"
default = "4"
}
variable "k8s_node_mem" {
type = string
description = "Kubernetes node memory capacity"
default = "8"
}
variable "k8s_node_disk_type" {
type = string
description = "Kubernetes node disk type"
default = "network-ssd-nonreplicated"
}
variable "k8s_node_disk_size" {
type = string
description = "Kubernetes node disk size"
default = "93"
}
variable "k8s_node_preemptible" {
type = bool
description = "Kubernetes node preemptible"
default = false
}
variable "k8s_node_name_prefix" {
type = string
description = "Kubernetes node name prefix"
default = "wrk"
}
variable "k8s_nodes_count" {
type = string
description = "Kubernetes nodes count in each zone"
default = "1"
}
variable "k8s_node_nat" {
type = bool
description = "Kubernetes nodes public ip address allocation"
default = false
}