-
Notifications
You must be signed in to change notification settings - Fork 0
/
Taskfile.yml
executable file
·54 lines (49 loc) · 1.18 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
version: "3"
env:
RELEASE_NAME: sulfoxide-lithium
includes:
util: tasks/Taskfile.util.yaml
pichu:opal:
taskfile: tasks/Taskfile.cluster.yaml
vars:
LANDSCAPE: pichu
CLUSTER: opal
pikachu:opal:
taskfile: tasks/Taskfile.cluster.yaml
vars:
LANDSCAPE: pikachu
CLUSTER: opal
raichu:opal:
taskfile: tasks/Taskfile.cluster.yaml
vars:
LANDSCAPE: raichu
CLUSTER: opal
entei:opal:
taskfile: tasks/Taskfile.cluster.yaml
vars:
LANDSCAPE: entei
CLUSTER: opal
tasks:
# Utility
start:cluster:
desc: Starts the playground cluster to test helm charts
cmds:
- ./scripts/local/create-k3d-cluster.sh
stop:cluster:
desc: Destroys the playground cluster to test helm charts
cmds:
- ./scripts/local/delete-k3d-cluster.sh
# Helm Operations
update:
desc: Update Helm dependencies
dir: chart
cmds:
- helm dependency update
latest:
desc: Get the latest version of OTEL Operator
cmds:
- task: util:latest
vars:
REPO_NAME: otel
REPO_URL: https://open-telemetry.github.io/opentelemetry-helm-charts
CHART_NAME: opentelemetry-operator