36 lines
623 B
HCL
36 lines
623 B
HCL
variable "namespace" {
|
|
type = string
|
|
default = "valkey"
|
|
}
|
|
|
|
variable "create_namespace" {
|
|
type = bool
|
|
default = true
|
|
}
|
|
|
|
variable "release_name" {
|
|
type = string
|
|
default = "valkey"
|
|
}
|
|
|
|
variable "chart_version" {
|
|
type = string
|
|
default = "0.9.2"
|
|
}
|
|
|
|
variable "repository" {
|
|
type = string
|
|
default = "https://valkey.io/valkey-helm/"
|
|
}
|
|
|
|
# Если хочешь кастомизировать chart values — просто передай сюда yamlencode({...})
|
|
variable "values" {
|
|
type = list(string)
|
|
default = []
|
|
}
|
|
|
|
variable "valkey_password" {
|
|
type = string
|
|
sensitive = true
|
|
}
|