-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.auto.tfvars
52 lines (44 loc) · 1.66 KB
/
main.auto.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
40
41
42
43
44
45
46
47
48
49
50
51
52
minikube = {
cluster_name = "minikube"
driver = "docker" # Options: docker, podman, kvm2, qemu, hyperkit, hyperv, ssh
kubernetes_version = "v1.28.3" # See available options: "minikube config defaults kubernetes-version" or refer to: https://kubernetes.io/releases/
container_runtime = "containerd" # Options: docker, containerd, cri-o
nodes = "2"
}
# METALLB
# REF: https://artifacthub.io/packages/helm/metallb/metallb
metallb = {
install = true
name = "metallb-system"
namespace = "metallb-system"
create_namespace = true
repository = "https://metallb.github.io/metallb"
chart = "metallb"
#version = "4.9.1" # Chart version
serviceMonitor_enabled = false
}
# CSI-DRIVER-NFS
# REF: https://github.com/kubernetes-csi/csi-driver-nfs/tree/master/charts
csi-driver-nfs = {
install = true
name = "csi-driver-nfs"
namespace = "csi-driver-nfs"
create_namespace = true
repository = "https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts"
chart = "csi-driver-nfs"
#version = "4.6.0" # Chart version
#serviceMonitor_enabled = false
nfs-storageclass-name = "nfs-csi-custom"
}
# WORDPRESS
# REF: https://artifacthub.io/packages/helm/bitnami/wordpress
wordpress = {
install = true
name = "wordpress"
namespace = "wordpress"
create_namespace = true
repository = "oci://registry-1.docker.io/bitnamicharts"
chart = "wordpress"
#version = "4.6.0" # Chart version
memcached_enabled = true
}