-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathTaskfile.yaml
42 lines (36 loc) · 877 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
42
---
version: "3"
set:
- pipefail
shopt:
- globstar
vars:
ANSIBLE_DIR: "{{.ROOT_DIR}}/ansible"
KUBERNETES_DIR: "{{.ROOT_DIR}}/kubernetes"
env:
MINIJINJA_CONFIG_FILE: "{{.ROOT_DIR}}/.minijinja.toml"
KUBECONFIG: "{{.KUBERNETES_DIR}}/main/kubeconfig:{{.KUBERNETES_DIR}}/staging/kubeconfig"
includes:
ansible: .taskfiles/Ansible
authentik: .taskfiles/Authentik
bootstrap: .taskfiles/Bootstrap
flux: .taskfiles/Flux
format: .taskfiles/Format
kubernetes: .taskfiles/Kubernetes
minio: .taskfiles/Minio
postgres: .taskfiles/Postgres
pre-commit: .taskfiles/Pre-commit
proxmox: .taskfiles/Proxmox
rook: .taskfiles/Rook
secrets: .taskfiles/Secrets
sops: .taskfiles/Sops
talos: .taskfiles/Talos
volsync: .taskfiles/Volsync
tasks:
default:
silent: true
cmd: task -l
noop:
internal: true
silent: true
cmd: noop() { :; }