-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTaskfile.yaml
38 lines (32 loc) · 887 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
---
# yaml-language-server: $schema=https://taskfile.dev/schema.json
version: "3"
set:
- pipefail
shopt:
- globstar
includes:
flux: .taskfiles/flux/Taskfile.yaml
k8s: .taskfiles/k8s/Taskfile.yaml
k8s-bootstrap: .taskfiles/k8s-bootstrap/Taskfile.yaml
# postgres: .taskfiles/postgres/Taskfile.yaml
sops: .taskfiles/sops/Taskfile.yaml
talos: .taskfiles/talos/Taskfile.yaml
volsync: .taskfiles/volsync/Taskfile.yaml
vars:
K8S_DIR: "{{.ROOT_DIR}}/kubernetes"
KUBECONFIG: "{{.K8S_DIR}}/kubeconfig"
MINIJINJA_CONFIG_FILE: "{{.ROOT_DIR}}/.minijinja.toml"
TALOSCONFIG: "{{.K8S_DIR}}/talos/clusterconfig/talosconfig"
env:
KUBECONFIG: "{{.KUBECONFIG}}"
MINIJINJA_CONFIG_FILE: "{{.MINIJINJA_CONFIG_FILE}}"
TALOSCONFIG: "{{.TALOSCONFIG}}"
tasks:
default:
silent: true
cmd: task --list
noop:
internal: true
silent: true
cmd: noop() { :; }