added possibility to use latest containers for CCM and CSI

This commit is contained in:
Karim Naufal
2022-01-15 09:04:21 +01:00
parent 8b0e0666ef
commit cd9bcd9710
8 changed files with 104 additions and 3 deletions

View File

@@ -55,3 +55,15 @@ variable "hetzner_csi_version" {
default = null
description = "Version of Container Storage Interface driver for Hetzner Cloud"
}
variable "hetzner_ccm_container_latest" {
type = bool
default = false
description = "Whether to kustomize the Hetzner CCM manifest with the latest or canary tags for containers"
}
variable "hetzner_csi_container_latest" {
type = bool
default = false
description = "Whether to kustomize the Hetzner CSI manifest with the latest or canary tags for containers"
}