Remove some seldom used variables and set reasonable
* Set reasonable values and remove some variable clutter * enable_reporting is only used with Calico and we can just default to false, I doubt anyone uses Calico and cares much about reporting metrics to upstream Calico
This commit is contained in:
parent
83f1bd2373
commit
6e2daded02
|
@ -4,7 +4,9 @@ Notable changes between versions.
|
||||||
|
|
||||||
## Latest
|
## Latest
|
||||||
|
|
||||||
|
* Remove `enable_aggregation` variable for Kubernetes Aggregation Layer, always set to true
|
||||||
* Remove `cluster_domain_suffix` variable, always use "cluster.local"
|
* Remove `cluster_domain_suffix` variable, always use "cluster.local"
|
||||||
|
* Remove `enable_reporting` variable for analytics, always set to false
|
||||||
|
|
||||||
## v1.30.3
|
## v1.30.3
|
||||||
|
|
||||||
|
|
|
@ -9,8 +9,6 @@ module "bootstrap" {
|
||||||
network_mtu = var.network_mtu
|
network_mtu = var.network_mtu
|
||||||
pod_cidr = var.pod_cidr
|
pod_cidr = var.pod_cidr
|
||||||
service_cidr = var.service_cidr
|
service_cidr = var.service_cidr
|
||||||
enable_reporting = var.enable_reporting
|
|
||||||
enable_aggregation = var.enable_aggregation
|
|
||||||
daemonset_tolerations = var.daemonset_tolerations
|
daemonset_tolerations = var.daemonset_tolerations
|
||||||
components = var.components
|
components = var.components
|
||||||
}
|
}
|
||||||
|
|
|
@ -172,18 +172,6 @@ variable "worker_node_labels" {
|
||||||
|
|
||||||
# advanced
|
# advanced
|
||||||
|
|
||||||
variable "enable_reporting" {
|
|
||||||
type = bool
|
|
||||||
description = "Enable usage or analytics reporting to upstreams (Calico)"
|
|
||||||
default = false
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "enable_aggregation" {
|
|
||||||
type = bool
|
|
||||||
description = "Enable the Kubernetes Aggregation Layer"
|
|
||||||
default = true
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "controller_arch" {
|
variable "controller_arch" {
|
||||||
type = string
|
type = string
|
||||||
description = "Controller node(s) architecture (amd64 or arm64)"
|
description = "Controller node(s) architecture (amd64 or arm64)"
|
||||||
|
|
|
@ -9,8 +9,6 @@ module "bootstrap" {
|
||||||
network_mtu = var.network_mtu
|
network_mtu = var.network_mtu
|
||||||
pod_cidr = var.pod_cidr
|
pod_cidr = var.pod_cidr
|
||||||
service_cidr = var.service_cidr
|
service_cidr = var.service_cidr
|
||||||
enable_reporting = var.enable_reporting
|
|
||||||
enable_aggregation = var.enable_aggregation
|
|
||||||
daemonset_tolerations = var.daemonset_tolerations
|
daemonset_tolerations = var.daemonset_tolerations
|
||||||
components = var.components
|
components = var.components
|
||||||
}
|
}
|
||||||
|
|
|
@ -172,18 +172,6 @@ variable "worker_node_labels" {
|
||||||
|
|
||||||
# advanced
|
# advanced
|
||||||
|
|
||||||
variable "enable_reporting" {
|
|
||||||
type = bool
|
|
||||||
description = "Enable usage or analytics reporting to upstreams (Calico)"
|
|
||||||
default = false
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "enable_aggregation" {
|
|
||||||
type = bool
|
|
||||||
description = "Enable the Kubernetes Aggregation Layer"
|
|
||||||
default = true
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "controller_arch" {
|
variable "controller_arch" {
|
||||||
type = string
|
type = string
|
||||||
description = "Controller node(s) architecture (amd64 or arm64)"
|
description = "Controller node(s) architecture (amd64 or arm64)"
|
||||||
|
|
|
@ -14,8 +14,6 @@ module "bootstrap" {
|
||||||
|
|
||||||
pod_cidr = var.pod_cidr
|
pod_cidr = var.pod_cidr
|
||||||
service_cidr = var.service_cidr
|
service_cidr = var.service_cidr
|
||||||
enable_reporting = var.enable_reporting
|
|
||||||
enable_aggregation = var.enable_aggregation
|
|
||||||
daemonset_tolerations = var.daemonset_tolerations
|
daemonset_tolerations = var.daemonset_tolerations
|
||||||
components = var.components
|
components = var.components
|
||||||
}
|
}
|
||||||
|
|
|
@ -152,18 +152,6 @@ variable "worker_node_labels" {
|
||||||
|
|
||||||
# advanced
|
# advanced
|
||||||
|
|
||||||
variable "enable_reporting" {
|
|
||||||
type = bool
|
|
||||||
description = "Enable usage or analytics reporting to upstreams (Calico)"
|
|
||||||
default = false
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "enable_aggregation" {
|
|
||||||
type = bool
|
|
||||||
description = "Enable the Kubernetes Aggregation Layer"
|
|
||||||
default = true
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "daemonset_tolerations" {
|
variable "daemonset_tolerations" {
|
||||||
type = list(string)
|
type = list(string)
|
||||||
description = "List of additional taint keys kube-system DaemonSets should tolerate (e.g. ['custom-role', 'gpu-role'])"
|
description = "List of additional taint keys kube-system DaemonSets should tolerate (e.g. ['custom-role', 'gpu-role'])"
|
||||||
|
|
|
@ -14,8 +14,6 @@ module "bootstrap" {
|
||||||
|
|
||||||
pod_cidr = var.pod_cidr
|
pod_cidr = var.pod_cidr
|
||||||
service_cidr = var.service_cidr
|
service_cidr = var.service_cidr
|
||||||
enable_reporting = var.enable_reporting
|
|
||||||
enable_aggregation = var.enable_aggregation
|
|
||||||
daemonset_tolerations = var.daemonset_tolerations
|
daemonset_tolerations = var.daemonset_tolerations
|
||||||
components = var.components
|
components = var.components
|
||||||
}
|
}
|
||||||
|
|
|
@ -150,18 +150,6 @@ EOD
|
||||||
default = "10.3.0.0/16"
|
default = "10.3.0.0/16"
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "enable_reporting" {
|
|
||||||
type = bool
|
|
||||||
description = "Enable usage or analytics reporting to upstreams (Calico)"
|
|
||||||
default = false
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "enable_aggregation" {
|
|
||||||
type = bool
|
|
||||||
description = "Enable the Kubernetes Aggregation Layer"
|
|
||||||
default = true
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "worker_node_labels" {
|
variable "worker_node_labels" {
|
||||||
type = list(string)
|
type = list(string)
|
||||||
description = "List of initial worker node labels"
|
description = "List of initial worker node labels"
|
||||||
|
|
|
@ -10,8 +10,6 @@ module "bootstrap" {
|
||||||
network_ip_autodetection_method = var.network_ip_autodetection_method
|
network_ip_autodetection_method = var.network_ip_autodetection_method
|
||||||
pod_cidr = var.pod_cidr
|
pod_cidr = var.pod_cidr
|
||||||
service_cidr = var.service_cidr
|
service_cidr = var.service_cidr
|
||||||
enable_reporting = var.enable_reporting
|
|
||||||
enable_aggregation = var.enable_aggregation
|
|
||||||
components = var.components
|
components = var.components
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -139,18 +139,6 @@ variable "kernel_args" {
|
||||||
default = []
|
default = []
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "enable_reporting" {
|
|
||||||
type = bool
|
|
||||||
description = "Enable usage or analytics reporting to upstreams (Calico)"
|
|
||||||
default = false
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "enable_aggregation" {
|
|
||||||
type = bool
|
|
||||||
description = "Enable the Kubernetes Aggregation Layer"
|
|
||||||
default = true
|
|
||||||
}
|
|
||||||
|
|
||||||
# advanced
|
# advanced
|
||||||
|
|
||||||
variable "components" {
|
variable "components" {
|
||||||
|
|
|
@ -10,8 +10,6 @@ module "bootstrap" {
|
||||||
network_ip_autodetection_method = var.network_ip_autodetection_method
|
network_ip_autodetection_method = var.network_ip_autodetection_method
|
||||||
pod_cidr = var.pod_cidr
|
pod_cidr = var.pod_cidr
|
||||||
service_cidr = var.service_cidr
|
service_cidr = var.service_cidr
|
||||||
enable_reporting = var.enable_reporting
|
|
||||||
enable_aggregation = var.enable_aggregation
|
|
||||||
components = var.components
|
components = var.components
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -144,18 +144,6 @@ variable "kernel_args" {
|
||||||
default = []
|
default = []
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "enable_reporting" {
|
|
||||||
type = bool
|
|
||||||
description = "Enable usage or analytics reporting to upstreams (Calico)"
|
|
||||||
default = false
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "enable_aggregation" {
|
|
||||||
type = bool
|
|
||||||
description = "Enable the Kubernetes Aggregation Layer"
|
|
||||||
default = true
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "oem_type" {
|
variable "oem_type" {
|
||||||
type = string
|
type = string
|
||||||
description = <<EOD
|
description = <<EOD
|
||||||
|
|
|
@ -11,10 +11,8 @@ module "bootstrap" {
|
||||||
network_encapsulation = "vxlan"
|
network_encapsulation = "vxlan"
|
||||||
network_mtu = "1450"
|
network_mtu = "1450"
|
||||||
|
|
||||||
pod_cidr = var.pod_cidr
|
pod_cidr = var.pod_cidr
|
||||||
service_cidr = var.service_cidr
|
service_cidr = var.service_cidr
|
||||||
enable_reporting = var.enable_reporting
|
components = var.components
|
||||||
enable_aggregation = var.enable_aggregation
|
|
||||||
components = var.components
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -86,18 +86,6 @@ EOD
|
||||||
default = "10.3.0.0/16"
|
default = "10.3.0.0/16"
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "enable_reporting" {
|
|
||||||
type = bool
|
|
||||||
description = "Enable usage or analytics reporting to upstreams (Calico)"
|
|
||||||
default = false
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "enable_aggregation" {
|
|
||||||
type = bool
|
|
||||||
description = "Enable the Kubernetes Aggregation Layer"
|
|
||||||
default = true
|
|
||||||
}
|
|
||||||
|
|
||||||
# advanced
|
# advanced
|
||||||
|
|
||||||
variable "components" {
|
variable "components" {
|
||||||
|
|
|
@ -11,10 +11,8 @@ module "bootstrap" {
|
||||||
network_encapsulation = "vxlan"
|
network_encapsulation = "vxlan"
|
||||||
network_mtu = "1450"
|
network_mtu = "1450"
|
||||||
|
|
||||||
pod_cidr = var.pod_cidr
|
pod_cidr = var.pod_cidr
|
||||||
service_cidr = var.service_cidr
|
service_cidr = var.service_cidr
|
||||||
enable_reporting = var.enable_reporting
|
components = var.components
|
||||||
enable_aggregation = var.enable_aggregation
|
|
||||||
components = var.components
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -86,18 +86,6 @@ EOD
|
||||||
default = "10.3.0.0/16"
|
default = "10.3.0.0/16"
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "enable_reporting" {
|
|
||||||
type = bool
|
|
||||||
description = "Enable usage or analytics reporting to upstreams (Calico)"
|
|
||||||
default = false
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "enable_aggregation" {
|
|
||||||
type = bool
|
|
||||||
description = "Enable the Kubernetes Aggregation Layer"
|
|
||||||
default = true
|
|
||||||
}
|
|
||||||
|
|
||||||
# advanced
|
# advanced
|
||||||
|
|
||||||
variable "components" {
|
variable "components" {
|
||||||
|
|
|
@ -9,8 +9,6 @@ module "bootstrap" {
|
||||||
network_mtu = 1440
|
network_mtu = 1440
|
||||||
pod_cidr = var.pod_cidr
|
pod_cidr = var.pod_cidr
|
||||||
service_cidr = var.service_cidr
|
service_cidr = var.service_cidr
|
||||||
enable_reporting = var.enable_reporting
|
|
||||||
enable_aggregation = var.enable_aggregation
|
|
||||||
daemonset_tolerations = var.daemonset_tolerations
|
daemonset_tolerations = var.daemonset_tolerations
|
||||||
components = var.components
|
components = var.components
|
||||||
|
|
||||||
|
|
|
@ -115,19 +115,6 @@ EOD
|
||||||
default = "10.3.0.0/16"
|
default = "10.3.0.0/16"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
variable "enable_reporting" {
|
|
||||||
type = bool
|
|
||||||
description = "Enable usage or analytics reporting to upstreams (Calico)"
|
|
||||||
default = false
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "enable_aggregation" {
|
|
||||||
type = bool
|
|
||||||
description = "Enable the Kubernetes Aggregation Layer"
|
|
||||||
default = true
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "worker_node_labels" {
|
variable "worker_node_labels" {
|
||||||
type = list(string)
|
type = list(string)
|
||||||
description = "List of initial worker node labels"
|
description = "List of initial worker node labels"
|
||||||
|
|
|
@ -9,8 +9,6 @@ module "bootstrap" {
|
||||||
network_mtu = 1440
|
network_mtu = 1440
|
||||||
pod_cidr = var.pod_cidr
|
pod_cidr = var.pod_cidr
|
||||||
service_cidr = var.service_cidr
|
service_cidr = var.service_cidr
|
||||||
enable_reporting = var.enable_reporting
|
|
||||||
enable_aggregation = var.enable_aggregation
|
|
||||||
daemonset_tolerations = var.daemonset_tolerations
|
daemonset_tolerations = var.daemonset_tolerations
|
||||||
components = var.components
|
components = var.components
|
||||||
|
|
||||||
|
|
|
@ -115,18 +115,6 @@ EOD
|
||||||
default = "10.3.0.0/16"
|
default = "10.3.0.0/16"
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "enable_reporting" {
|
|
||||||
type = bool
|
|
||||||
description = "Enable usage or analytics reporting to upstreams (Calico)"
|
|
||||||
default = false
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "enable_aggregation" {
|
|
||||||
type = bool
|
|
||||||
description = "Enable the Kubernetes Aggregation Layer"
|
|
||||||
default = true
|
|
||||||
}
|
|
||||||
|
|
||||||
variable "worker_node_labels" {
|
variable "worker_node_labels" {
|
||||||
type = list(string)
|
type = list(string)
|
||||||
description = "List of initial worker node labels"
|
description = "List of initial worker node labels"
|
||||||
|
|
Loading…
Reference in New Issue