34 lines
783 B
HCL
34 lines
783 B
HCL
variable "namespace" {
|
|
type = string
|
|
description = "Namespace, куда ставим Crunchy operator"
|
|
default = "postgres-operator"
|
|
}
|
|
|
|
variable "release_name" {
|
|
type = string
|
|
description = "Helm release name"
|
|
default = "pgo"
|
|
}
|
|
|
|
variable "chart_version" {
|
|
type = string
|
|
description = "Версия чарта pgo (пинить обязательно для воспроизводимости)"
|
|
default = "6.0.0"
|
|
}
|
|
|
|
variable "debug" {
|
|
type = bool
|
|
default = false
|
|
}
|
|
|
|
variable "replicas" {
|
|
type = number
|
|
default = 1
|
|
}
|
|
|
|
variable "single_namespace" {
|
|
type = bool
|
|
description = "Если true — оператор управляет кластерами только в этом namespace"
|
|
default = true
|
|
}
|