-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTaskfile.yaml
41 lines (34 loc) · 845 Bytes
/
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
---
# yaml-language-server: $schema=https://taskfile.dev/schema.json
version: "3"
vars:
# Directories
KUBERNETES_DIR: "{{.ROOT_DIR}}/kubernetes"
SCRIPTS_DIR: "{{.ROOT_DIR}}/scripts"
# Files
AGE_FILE: "{{.ROOT_DIR}}/age.key"
KUBECONFIG_FILE: "{{.ROOT_DIR}}/kubeconfig"
SOPS_CONFIG_FILE: "{{.ROOT_DIR}}/.sops.yaml"
env:
KUBECONFIG: "{{.KUBECONFIG_FILE}}"
SOPS_AGE_KEY_FILE: "{{.AGE_FILE}}"
includes:
kubernetes: .taskfiles/Kubernetes
flux: .taskfiles/Flux
talos: .taskfiles/Talos
sops: .taskfiles/Sops
workstation: .taskfiles/Workstation
user:
taskfile: .taskfiles/User
optional: true
externalsecrets:
taskfile: .taskfiles/ExternalSecrets
aliases:
- es
volsync:
taskfile: .taskfiles/Volsync
aliases:
- vs
tasks:
default: task --list
# No other tasks are needed here