1
0
mirror of https://github.com/poseidon/typhoon synced 2024-10-18 21:49:26 +02:00
typhoon/addons/flannel/variables.tf

12 lines
343 B
Terraform
Raw Normal View History

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 = []
}