-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
40 lines (34 loc) · 1.2 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
variable "spec" {
type = any
description = "Specification used in the helm release for the instance. see https://github.com/wandb/cdk8s/blob/main/config-schema.json for details."
}
variable "wandb_namespace" {
type = string
default = "default"
description = "Kubernetes namespace where the operator will be deployed. By default, it uses the `default` namespace."
}
variable "controller_image_tag" {
type = string
default = "latest"
description = "wandb/controller image tag"
}
variable "operator_chart_namespace" {
type = string
default = "wandb"
description = "Kubernetes namespace where the operator CRD's will be deployed. By default, it uses the `default` namespace."
}
variable "operator_chart_version" {
type = string
default = "latest"
description = "https://github.com/wandb/helm-charts/tree/main/charts/operator helm chart version"
}
variable "enable_helm_operator" {
type = bool
default = true
description = "Enable or disable applying and releasing W&B Operator chart"
}
variable "enable_helm_wandb" {
type = bool
default = true
description = "Enable or disable applying and releasing CR chart"
}