-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathterraform.tfvars
39 lines (36 loc) · 875 Bytes
/
terraform.tfvars
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
# Cluster Config Variables
minikube_driver = "docker"
cluster_name = "actions-cluster"
kubernetes_version = "v1.30.0"
cluster_addons = [
"ingress",
"metrics-server",
"dashboard",
"storage-provisioner",
"default-storageclass",
]
cluster_cpus = 4
cluster_disk_size = "50g"
cluster_memory = "8192"
cluster_nodes = "3"
#ARC Chart Variables
arc_controller_namespace = "arc-systems"
arc_controller_chart_version = "0.9.3"
arc_runner_namespace = "arc-runners"
arc_runner_chart_version = "0.9.3"
arc_runner_config = [{
name = "githubConfigUrl"
value = "https://github.com/" # This is a dummy repo
}, {
name = "githubConfigSecret.github_token"
value = "ghp_3" # This is a dummy token
}, {
name = "maxRunners"
value = "3"
}, {
name = "minRunners"
value = "1"
}, {
name = "containerMode.type"
value = "dind"
}]