-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
333 lines (268 loc) · 10.3 KB
/
variables.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
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
variable "enable_container_linux_update-engine" {
description = "Whether to enable automatic updates for Container Linux."
default = true
}
variable "enable_container_linux_locksmithd_cfssl" {
description = "Whether to enable automatic updates for Container Linux on cfssl nodes."
default = true
}
variable "enable_container_linux_locksmithd_etcd" {
description = "Whether to enable automatic updates for Container Linux on etcd nodes."
default = true
}
variable "enable_container_linux_locksmithd_master" {
description = "Whether to enable automatic updates for Container Linux on kube master nodes."
default = true
}
variable "enable_container_linux_locksmithd_worker" {
description = "Whether to enable automatic updates for Container Linux on kube worker nodes."
default = true
}
variable "enable_coreos_metadata_sshkeys_service" {
description = "Whether to enable the [email protected]"
default = false
}
variable "force_boot_reprovisioning" {
description = "Force a new Ignition run on every reboot and wipe root filesystem"
default = false
}
variable "omit_locksmithd_service" {
description = "Whether to omit locksmithd service from ignition. It should be used when passing locksmithd service as additional config to avoid ignition failures"
default = false
}
variable "set_etcd_locksmithd_dropin_reboot_config" {
description = "Whether to create a dropin to configure etcd locksmithd reboot windows"
default = true
}
variable "omit_update_engine_service" {
description = "Whether to omit update-engine service from ignition. It should be used when passing update-engine service as additional config to avoid ignition failures"
default = false
}
variable "containerd_log_level" {
description = "Log level for the containerd daemon (debug, info, warn, error, fatal, panic)"
default = "warn"
}
variable "dns_domain" {
description = "The domain under which this cluster's DNS records are set (cluster-name.example.com)."
}
variable "etcd_image_url" {
description = "Where to get the etcd image from."
default = "quay.io/coreos/etcd"
}
variable "etcd_image_tag" {
description = "The version of the etcd image to use."
default = "v3.5.16"
}
variable "etcd_data_dir" {
description = "Directory where etcd data is stored"
default = "/var/lib/etcd"
}
variable "node_exporter_image_url" {
description = "Where to get the node_exporter image from."
default = "quay.io/prometheus/node-exporter"
}
variable "node_exporter_image_tag" {
description = "The version of the node_exporter image to use."
default = "v1.8.0"
}
variable "kubernetes_version" {
description = "Kubernetes version, used to specify registry.k8s.io docker image version and Kubernetes binaries"
default = "v1.31.0"
}
variable "cluster_dns" {
description = "List of DNS server IP addresses. Used by kubelet."
type = list(string)
}
variable "master_address" {
description = "The address of the kubernetes API server, typically of their load balancer. Used by the worker kubelet."
}
variable "external_apiserver_address" {
description = "The external address passed to apiservers to use when generating externalized URLs. If nothing passed the master_address will be used."
default = ""
}
variable "cloud_provider" {
description = "The cloud provider. Used by the API Server, the Controller Manager and kubelet."
default = ""
}
variable "kube_controller_cloud_config" {
description = "Cloud config to be passed to kube-controller manager (expected as raw text). Nothing will be passed on empty variable"
default = ""
}
variable "master_instance_count" {
description = "The number of master instances in the kubernetes cluster. Used by the API server."
default = 3
}
variable "etcd_addresses" {
description = "A list of IP addresses for the etcd nodes. Used by the etcd services and the API server."
type = list(string)
}
variable "oidc_issuer_url" {
description = "The URL of the OIDC provider. Used by the API Server."
}
variable "oidc_client_id" {
description = "The client id for the OIDC provider. Used by the API Server."
}
variable "service_network" {
description = "The subnet to use for kubernetes service addressing. Used by the API server."
default = "10.3.0.0/16"
}
variable "pod_network" {
description = "The subnet to use for kubernetes pod addressing. Used by the Controller Manager"
default = "10.2.0.0/16"
}
variable "cfssl_additional_systemd_units" {
description = "Additional systemd units to include in the igntion config data for the cfssl node."
default = []
type = list(string)
}
variable "cfssl_additional_files" {
description = "Additional files to include in the igntion config data for the cfssl node."
default = []
type = list(string)
}
variable "etcd_additional_systemd_units" {
description = "Additional systemd units to include in the igntion config data for etcd nodes."
default = []
type = list(string)
}
variable "etcd_additional_files" {
description = "Additional files to include in the igntion config data for etcd nodes."
default = []
type = list(string)
}
variable "master_additional_systemd_units" {
description = "Additional systemd units to include in the igntion config data for master nodes."
default = []
type = list(string)
}
variable "master_additional_files" {
description = "Additional files to include in the igntion config data for master nodes."
default = []
type = list(string)
}
variable "master_additional_labels" {
description = "Map of additional labels to append to role=master in the respective master nodes kubelet flag."
type = map(string)
default = {}
}
variable "worker_additional_systemd_units" {
description = "Additional systemd units to include in the igntion config data for worker nodes."
default = []
type = list(string)
}
variable "worker_additional_files" {
description = "Additional files to include in the igntion config data for worker nodes."
default = []
type = list(string)
}
variable "worker_additional_labels" {
description = "Map of additional labels to append to role=worker in the respective worker nodes kubelet flag."
type = map(string)
default = {}
}
variable "cfssl_ca_cn" {
description = "The Common Name for the CA certificate."
}
variable "cfssl_ca_expiry_hours" {
description = "The expiry time in hours for the CA certificate (defaults to 2 years)."
default = "17520"
}
variable "cfssl_node_expiry_hours" {
description = "The expiry time in hours for the nodes certificats (defaults to a week)."
default = "168"
}
variable "cfssl_node_renew_timer" {
description = "The systemd timestamp that triggers node certificate renewal (default to every day at 05:45)."
default = "*-*-* 05:45:00"
}
variable "cfssl_server_address" {
description = "The IP address of the cfssl server."
}
variable "cfssl_data_volumeid" {
}
variable "cfssl_version" {
default = "1.6.5"
}
variable "cfssl_binary_sha512" {
default = "sha512-c90e56051954eb930e8f410b05c12ffdc1ac67de4625174d2996d204062367e3f73a9506c4b3ac2af274b3739e16d6d2d790a50047f2ad98b014a4fb5aac1491"
}
variable "cfssljson_binary_sha512" {
default = "sha512-32964c8babd7d64d90878006ae75cecf89bbb84a2bb0b4602005fe2ad731a04c74ed2f662586caee7e33d18173b9980f752e099bd383db8f626c77517bb1ce3f"
}
variable "etcd_data_volumeids" {
type = list(string)
}
variable "dockerhub_mirror_endpoint" {
description = "DockerHub mirror endpoint"
}
variable "dockerhub_username" {
description = "Docker Hub user"
}
variable "dockerhub_password" {
description = "Docker Hub password"
}
variable "nginx_image" {
description = "https://github.com/nginx/nginx/releases"
default = "nginx:1.27.2-alpine"
}
variable "feature_gates" {
description = "https://kubernetes.io/docs/reference/command-line-tools-reference/feature-gates/"
type = map(string)
# example default feature gates:
# ```
# default = {
# "ExpandPersistentVolumes" = "true"
# "PodShareProcessNamespace" = "true"
# }
# ```
default = {}
}
variable "admission_plugins" {
description = "https://kubernetes.io/docs/reference/access-authn-authz/admission-controllers/"
default = "NodeRestriction"
}
variable "system_reserved_cpu" {
description = "Passed to nodes kubelet config as systemReserved cpu value"
default = "1000m"
}
variable "system_reserved_memory" {
description = "Passed to nodes kubelet config as systemReserved memory value"
default = "2Gi"
}
variable "eviction_threshold_memory_soft" {
description = "Amount of available memory that triggers soft eviction. In bytes to facilitate exporting it as metric"
default = "2147483648" # 2Gi(2^31 bytes)
}
variable "eviction_threshold_memory_hard" {
description = "Amount of available memory that triggers hard eviction. In bytes to facilitate exporting it as metric"
default = "1073741824" # 1Gi(2^30 bytes)
}
locals {
component_cloud_provider = can(regex("aws|gce", var.cloud_provider)) ? "external" : var.cloud_provider
# Comma separated list for cli flas use, example output:
# `ExpandPersistentVolumes=true,PodShareProcessNamespace=true,AdvancedAuditing=false`
feature_gates_csv = join(",", formatlist("%s=%s", keys(var.feature_gates), values(var.feature_gates)))
# yaml fragment for config file use, example output:
# ```
# AdvancedAuditing: false
# ExpandPersistentVolumes: true
# PodShareProcessNamespace: true
# ```
#
# note the two white space chars at the start of the line, this corresponds to the
# formatting in worker-kubelet-conf.yaml and master-kubelet-conf.yaml
feature_gates_yaml_fragment = join("\n ", formatlist("%s: %s", keys(var.feature_gates), values(var.feature_gates)))
# cluster_dns list formatted for KubeletConfiguration yaml
#
# example:
# clusterDNS:${cluster_dns}
# ...
# clusterDNS:
# - "169.254.20.10"
# - "10.3.0.10"
#
cluster_dns_yaml = join("", formatlist("\n - \"%s\"", var.cluster_dns))
# Kubelet labels
master_kubelet_labels = join(",", concat(["role=master"], formatlist("%s=%s", keys(var.master_additional_labels), values(var.master_additional_labels))))
worker_kubelet_labels = join(",", concat(["role=worker"], formatlist("%s=%s", keys(var.worker_additional_labels), values(var.worker_additional_labels))))
}