generated from onedr0p/cluster-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathTaskfile.yaml
37 lines (31 loc) · 929 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
---
# yaml-language-server: $schema=https://taskfile.dev/schema.json
version: "3"
set:
- pipefail
shopt:
- globstar
includes:
flux: .taskfiles/flux/Taskfile.yaml
kubernetes: .taskfiles/kubernetes/Taskfile.yaml
bootstrap: .taskfiles/bootstrap/Taskfile.yaml
sops: .taskfiles/sops/Taskfile.yaml
talos: .taskfiles/talos/Taskfile.yaml
vars:
KUBERNETES_DIR: "{{.ROOT_DIR}}/kubernetes"
TALOSCONFIG: "{{.KUBERNETES_DIR}}/talos/clusterconfig/talosconfig"
TALHELPER_CLUSTER_DIR: '{{.KUBERNETES_DIR}}/talos/clusterconfig'
TALHELPER_SECRET_FILE: '{{.KUBERNETES_DIR}}/talos/talsecret.sops.yaml'
TALHELPER_CONFIG_FILE: '{{.KUBERNETES_DIR}}/talos/talconfig.yaml'
env:
KUBECONFIG: "{{.KUBECONFIG}}"
TALOSCONFIG: "{{.TALOSCONFIG}}"
MINIJINJA_CONFIG_FILE: "{{.ROOT_DIR}}/.minijinja.toml"
tasks:
default:
silent: true
cmd: task --list
noop:
internal: true
silent: true
cmd: noop() { :; }