-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTaskfile.yaml
48 lines (44 loc) · 1.18 KB
/
Taskfile.yaml
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
---
# yaml-language-server: $schema=https://taskfile.dev/schema.json
version: "3"
dotenv: ["{{.ROOT_DIR}}/.env", "{{.HOME}}/.env"]
vars:
TALOS_DIR: "{{.ROOT_DIR}}/talos"
TERRAFORM_DIR: "{{.ROOT_DIR}}/terraform"
ARGO_APP_DIR: "{{.ROOT_DIR}}/applications"
KYVERNO_POLICY_DIR: "{{.ROOT_DIR}}/applications/base/kyverno-policies/policies"
includes:
argocd:
taskfile: ./.taskfiles/argo-cd/taskfile.yaml
aliases: [acd]
talos:
taskfile: ./.taskfiles/talos/taskfile.yaml
dir: "{{.TALOS_DIR}}"
aliases: [tal]
externalsecrets:
taskfile: .taskfiles/external-secrets/taskfile.yaml
aliases: [es]
kube:
taskfile: ./.taskfiles/kube/taskfile.yaml
aliases: [k]
kyverno:
taskfile: ./.taskfiles/kyverno/taskfile.yaml
dir: "{{.KYVERNO_POLICY_DIR}}"
aliases: [ky]
repo:
taskfile: ./.taskfiles/repo/Taskfile.yaml
aliases: [r]
rookceph:
taskfile: .taskfiles/rook-ceph/taskfile.yaml
aliases: [rook]
terraform:
taskfile: ./.taskfiles/terraform/taskfile.yaml
dir: "{{.TERRAFORM_DIR}}"
aliases: [tf]
turingpi:
taskfile: ./.taskfiles/turing-pi/taskfile.yaml
aliases: [tpi]
tasks:
default:
silent: true
cmd: task -l