You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description="Deployment environment for the freeform tags"
23
-
}
24
-
variable"app_deployment_type" {
25
-
default="generic"# e.g.: App Type 1, App Type 2, Red, Purple, ...
26
-
description="Deployment type for the freeform tags"
27
-
}
28
-
variable"deploy_id" {
29
-
default=""
30
-
description="Deployment ID"
31
-
}
32
-
33
15
## Node Pool Variables
34
-
variable"k8s_version" {
16
+
variable"create_new_node_pool" {
17
+
default=true
18
+
description="Create a new node pool if true or use an existing one if false"
19
+
}
20
+
variable"node_k8s_version" {
35
21
description="Kubernetes version installed on your worker nodes"
36
22
type=string
37
23
default="Latest"
@@ -40,10 +26,14 @@ variable "node_pool_name" {
40
26
default="pool1"
41
27
description="Name of the node pool"
42
28
}
43
-
variable"num_pool_workers" {
29
+
variable"node_pool_min_nodes" {
44
30
default=3
45
31
description="The number of worker nodes in the node pool. If select Cluster Autoscaler, will assume the minimum number of nodes configured"
46
32
}
33
+
variable"node_pool_max_nodes" {
34
+
default=3
35
+
description="The max number of worker nodes in the node pool if using Cluster Autoscaler."
36
+
}
47
37
variable"node_pool_shape" {
48
38
default="VM.Standard.E4.Flex"
49
39
description="A shape is a template that determines the number of OCPUs, amount of memory, and other resources allocated to a newly created instance for the Worker Node"
description="Specify a custom boot volume size (in GB)"
70
60
}
71
-
variable"generate_public_ssh_key" {
72
-
default=true
73
-
}
74
61
variable"public_ssh_key" {
75
62
default=""
76
63
description="In order to access your private nodes with a public SSH key you will need to set up a bastion host (a.k.a. jump box). If using public nodes, bastion is not needed. Left blank to not import keys."
0 commit comments