-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmise.toml
More file actions
65 lines (53 loc) · 1.82 KB
/
mise.toml
File metadata and controls
65 lines (53 loc) · 1.82 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
[tools]
helm = "4.1.4"
jq = "1.8.1"
yq = "4.53.2"
kubectl = "1.35.3"
stern = "latest"
minikube = "1.38.1"
gomplate = "5.1.0"
#########################
# Default Configuration #
#########################
# All vars can be overridden at call time as env vars, e.g.:
# K8SCLUSTER=my-cluster POSTGRESQL_NODES=1 mise run start
[vars]
CNPG_VERSION = "1.29.1" # https://github.com/cloudnative-pg/cloudnative-pg/tags
CNPG_OPERATOR_CHART_VERSION = "0.28.2" # OperatorVersion=1.29.1 # https://github.com/cloudnative-pg/charts/blob/main/charts/cloudnative-pg/Chart.yaml
CNPG_CLUSTER_CHART_VERSION = "0.6.0" # https://github.com/cloudnative-pg/charts/blob/main/charts/cluster/Chart.yaml
POSTGRESQL_VERSION = "18.3"
K8SCLUSTER = "pg-test"
NAMESPACE = "pg-test"
INSTALL_PROMETHEUS = "true"
WITH_MONITORING = "true"
POSTGRESQL_INSTANCE = "postgresql-testing"
# POSTGRESQL_EXTENSION = "hypopg-hll-cron"
POSTGRESQL_DISK_SIZE = "40Gi"
POSTGRESQL_NODES = "3"
POSTGRESQL_NODE_MEM = "2Gi"
POSTGRESQL_NODE_CPU = "1000m"
# POSTGRESQL_IMAGE = "ghcr.io/wanix/postgresql:{{vars.POSTGRESQL_VERSION}}-{{vars.POSTGRESQL_EXTENSION}}"
POSTGRESQL_IMAGE = "ghcr.io/cloudnative-pg/postgresql:{{vars.POSTGRESQL_VERSION}}"
PGPOOLERINSTANCESNUMBER = "2"
PGPOOLERPOOLSIZE = "10"
PGPOOLERMAXCONN = "100"
MINIKUBE = "true"
MINIKUBE_RESOURCES = "--memory 6144 --cpus 4"
STORAGE_CLASS = "manual" # https://minikube.sigs.k8s.io/docs/drivers/
MINIKUBE_DRIVER = "podman" # docker, podman, virtualbox, hyperkit, kvm2, parallels, vmware, ssh
MINIKUBE_NODES = "3"
GRAFANA_PORT = "8080"
CNPG_OPERATOR_VALUES_OVERRIDE = ""
CNPG_CLUSTER_VALUES_OVERRIDE = ""
PGBENCH_SCALE = "10"
PGBENCH_CLIENTS = "10"
PG_BENCH_JOBS = "1"
PGBENCH_DURATION_SECONDS = "60"
PGBENCH_INSTANCES = "1"
###############
# Mise tasks #
###############
[task_config]
includes = [
"mise/tasks.d/*.toml",
]