Move daemonset tolerations up, they're documented

This commit is contained in:
Dalton Hubble
2021-06-27 18:01:34 -07:00
parent 362f42a7a2
commit c0718e8552

View File

@@ -91,6 +91,12 @@ variable "enable_aggregation" {
default = false
}
variable "daemonset_tolerations" {
type = list(string)
description = "List of additional taint keys kube-system DaemonSets should tolerate (e.g. ['custom-role', 'gpu-role'])"
default = []
}
# unofficial, temporary, may be removed without notice
variable "external_apiserver_port" {
@@ -104,10 +110,3 @@ variable "cluster_domain_suffix" {
description = "Queries for domains with the suffix will be answered by kube-dns"
default = "cluster.local"
}
variable "daemonset_tolerations" {
type = list(string)
description = "List of additional taint keys kube-system DaemonSets should tolerate (e.g. ['custom-role', 'gpu-role'])"
default = []
}