mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-26 21:09:34 +01:00
18 lines
501 B
Terraform
18 lines
501 B
Terraform
|
variable "pod_cidr" {
|
||
|
type = string
|
||
|
description = "CIDR IP range to assign Kubernetes pods"
|
||
|
default = "10.2.0.0/16"
|
||
|
}
|
||
|
|
||
|
variable "daemonset_tolerations" {
|
||
|
type = list(string)
|
||
|
description = "List of additional taint keys kube-system DaemonSets should tolerate (e.g. ['custom-role', 'gpu-role'])"
|
||
|
default = []
|
||
|
}
|
||
|
|
||
|
variable "enable_hubble" {
|
||
|
type = bool
|
||
|
description = "Run the embedded Hubble Server and mount hubble-server-certs Secret"
|
||
|
default = true
|
||
|
}
|