-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
47 lines (40 loc) · 1019 Bytes
/
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
variable "client_concurrency" {
type = number
description = "Number of clients to upgrade at a time"
default = 1
}
variable "server_concurrency" {
type = number
description = "Number of servers to upgrade at a time"
default = 1
}
variable "force_drain" {
type = bool
description = "Force drain nodes"
default = true
}
variable "delete_local_data" {
type = bool
description = "Delete local data"
default = false
}
variable "ignore_daemonsets" {
type = bool
description = "Ignore daemonsets"
default = true
}
variable "upgrade_controller_version" {
type = string
default = "v0.13.1"
description = "The version of the system-upgrade-controller to use."
}
variable "kubectl_version" {
type = string
default = "1.27.7"
description = "The version of kubectl to use."
}
variable "k3s_channel" {
type = string
default = "stable"
description = "The channel to use for k3s upgrades."
}