Add Longhorn and make it possible to enable/disable it and the hetzner csi

This commit is contained in:
Michael Karbowiak
2022-05-02 16:21:18 +02:00
parent 56ff30199d
commit f905b68e7c
5 changed files with 89 additions and 14 deletions

View File

@@ -163,3 +163,15 @@ variable "cni_plugin" {
default = "flannel"
description = "CNI plugin for k3s"
}
variable "enable_longhorn" {
type = bool
default = false
description = "Enable Longhorn"
}
variable "disable_hetzner_csi" {
type = bool
default = false
description = "Disable hetzner csi driver"
}