-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
23 lines (23 loc) · 715 Bytes
/
variables.tf
File metadata and controls
23 lines (23 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
variable "chart_version" {
description = "Rensorflow_notebook chart version. More info: https://github.com/helm/charts/tree/master/stable/tensorflow-notebook"
type = string
default = "0.1.3"
}
variable "service_type" {
description = "tensorflow_notebook service type"
default = "NodePort"
}
variable "tensorboard_image_pullPolicy" {
description = "Image pull policy"
default = "Always"
}
variable "tensorboard_image_tag" {
description = "TensorFlow Development image tag"
type = string
default = "latest"
}
variable "tensorboard_image_repository" {
description = "TensorFlow Development image repo"
type = string
default = "tensorflow/tensorflow"
}