forked from roeldev/iac-talos-cluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversions.tf
50 lines (44 loc) · 1.48 KB
/
versions.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
41
42
43
44
45
46
47
48
49
50
variable "talos_version" {
# https://github.com/siderolabs/talos/releases
description = "Talos version to use"
type = string
default = "1.7.5"
}
variable "talos_machine_install_image_url" {
# https://www.talos.dev/v1.7/talos-guides/install/boot-assets/
description = "The URL of the Talos machine install image"
type = string
# % is replaced by talos_version
default = "factory.talos.dev/installer/88d1f7a5c4f1d3aba7df787c448c1d3d008ed29cfb34af53fa0df4336a56040b:v%"
# default = "ghcr.io/siderolabs/installer:v%" // = default, when not using system extensions
}
variable "k8s_version" {
# https://www.talos.dev/v1.7/introduction/support-matrix/
description = "Kubernetes version to use"
type = string
default = "1.30.0"
}
variable "talos_ccm_version" {
# https://github.com/siderolabs/talos-cloud-controller-manager/releases
description = "Talos Cloud Controller Manager version to use"
type = string
default = "1.6.0"
}
variable "cilium_version" {
# https://helm.cilium.io/
description = "Cilium Helm version to use"
type = string
default = "1.15.6"
}
variable "argocd_version" {
# https://github.com/argoproj/argo-cd/releases
description = "ArgoCD version to use"
type = string
default = "2.11.4"
}
variable "metrics_server_version" {
# https://github.com/kubernetes-sigs/metrics-server/releases
description = "Kubernetes Metrics Server version to use"
type = string
default = "0.7.1"
}