-
-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathmise.toml
More file actions
31 lines (25 loc) · 894 Bytes
/
mise.toml
File metadata and controls
31 lines (25 loc) · 894 Bytes
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
[tools]
ctlptl = "0.8.43"
helm = "4.1.3"
kind = "0.31.0"
kubectl = "1.35.3"
tilt = "0.37.0"
[tasks."local:helm:deps"]
description = "Build Helm chart dependencies"
sources = ["charts/immich/Chart.yaml", "charts/immich/Chart.lock"]
outputs = ["charts/immich/charts/*.tgz"]
run = "helm dependency build charts/immich"
[tasks."local:cluster:up"]
description = "Create the local Kind cluster with registry"
run = "ctlptl apply -f local/clusters.yaml"
[tasks."local:cluster:down"]
description = "Delete the local Kind cluster"
run = "ctlptl delete -f local/clusters.yaml"
[tasks."local:up"]
description = "Start the local development environment"
depends = ["local:cluster:up", "local:helm:deps"]
run = "tilt up --file local/Tiltfile"
[tasks."local:ci"]
description = "Run Tilt in CI mode for validation"
depends = ["local:cluster:up", "local:helm:deps"]
run = "tilt ci --file local/Tiltfile"