-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTaskfile.yaml
47 lines (42 loc) · 1.17 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
---
# yaml-language-server: $schema=https://taskfile.dev/schema.json
version: '3'
set:
- pipefail
shopt:
- globstar
silent: true
vars:
K0S_ROOT: '{{.ROOT_DIR}}/infra/k0s'
TALOS_ROOT: '{{.ROOT_DIR}}/infra/talos'
GITOPS_ROOT: '{{.ROOT_DIR}}/gitops'
MKDOCS_DOCS_ROOT: '{{.ROOT_DIR}}/docs'
MKDOCS_CFG: '{{.ROOT_DIR}}/mkdocs.yml'
VAULT_ENDPOINT: 'https://vault.k0s-fullstack.fredcorp.com'
AUTHENTIK_ENDPOINT_GENMACHINE: 'https://authentik.talos-genmachine.fredcorp.com'
AUTHENTIK_ENDPOINT_BEELINK: 'https://authentik.k0s-fullstack.fredcorp.com'
K8S_API: 'talos-cluster.genmachine.fredcorp.com'
MINIO_API: 'minio-api.talos-genmachine.fredcorp.com'
includes:
k0s: .taskfiles/k0s
pre-commit: .taskfiles/pre-commit
mkdocs: .taskfiles/mkdocs
eso: .taskfiles/eso
talos: .taskfiles/talos
sops: .taskfiles/sops
proxmox: .taskfiles/proxmox
bootstrap: .taskfiles/bootstrap/talos
lint: .taskfiles/lint
k8s: .taskfiles/kubernetes
vault: .taskfiles/vault
helm: .taskfiles/helm
restic: .taskfiles/restic
authentik: .taskfiles/authentik
tasks:
default:
silent: true
cmd: task -l
noop:
internal: true
silent: true
cmd: noop() { :; }