Skip to content

Commit

Permalink
tasks: add vyos config
Browse files Browse the repository at this point in the history
  • Loading branch information
cubic3d committed Feb 14, 2025
1 parent 0b0c3ab commit e27c92b
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 5 deletions.
15 changes: 15 additions & 0 deletions .taskfiles/vyos/Taskfile.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# yaml-language-server: $schema=https://taskfile.dev/schema.json
version: "3"

tasks:
check:
desc: Check configuration
dir: "{{.ROOT_DIR}}/infrastructure/ansible"
cmds:
- ansible-playbook --check site.yaml

apply:
desc: Check configuration
dir: "{{.ROOT_DIR}}/infrastructure/ansible"
cmds:
- ansible-playbook site.yaml
14 changes: 9 additions & 5 deletions Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,25 @@ tasks:

includes:
talos:
taskfile: ".taskfiles/talos"
taskfile: .taskfiles/talos
dir: .taskfiles/talos

flux:
taskfile: ".taskfiles/flux"
taskfile: .taskfiles/flux
dir: .taskfiles/flux

k8s:
taskfile: ".taskfiles/k8s"
taskfile: .taskfiles/k8s
dir: .taskfiles/k8s

postgres:
taskfile: ".taskfiles/postgres"
taskfile: .taskfiles/postgres
dir: .taskfiles/postgres

volsync:
taskfile: ".taskfiles/volsync"
taskfile: .taskfiles/volsync
dir: .taskfiles/volsync

vyos:
taskfile: .taskfiles/vyos
dir: .taskfiles/vyos

0 comments on commit e27c92b

Please sign in to comment.