-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTaskfile.yml
43 lines (36 loc) · 926 Bytes
/
Taskfile.yml
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
version: '3'
tasks:
up-k3d:
desc: "Create a 'workbench' k3d cluster"
cmds:
- k3d cluster delete workbench
- k3d cluster create workbench --registry-create workbench-registry --config .k3d.yaml
status:
- k3d cluster get workbench
- "k3d cluster get workbench -oyaml | grep 'Running: true'"
down-k3d:
desc: "Delete the 'workbench' k3d cluster"
cmds:
- k3d cluster delete workbench
up-tilt:
desc: "Run the tilt dev server"
deps:
- up-k3d
cmds:
- tilt up
up-dev:
desc: "Set up the development environment"
deps:
- up-tilt
down-dev:
desc: "Tear down the development environment"
deps:
- down-k3d
build-helm:
desc: "Render the helm chart templates"
cmds:
- helm template local deploy/ --release-name --output-dir=deploy/rendered/
test-api:
desc: "Run the api tests"
cmds:
- pytest