From c0718e85529bbdd53bb83b2ce41904710c6bf6f5 Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Sun, 27 Jun 2021 18:01:34 -0700 Subject: [PATCH] Move daemonset tolerations up, they're documented --- variables.tf | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/variables.tf b/variables.tf index de14f39..403ee5b 100644 --- a/variables.tf +++ b/variables.tf @@ -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 = [] -} -