Files
auricom-home-cluster/.justfile
2025-08-29 20:28:48 +02:00

28 lines
519 B
Makefile

#!/usr/bin/env -S just --justfile
set quiet
set shell := ['bash', '-eu', '-o', 'pipefail', '-c']
[doc('Bootstrap Recipes')]
mod bootstrap '.just/bootstrap.just'
[doc('Kubernetes Recipes')]
mod kube '.just/kube.just'
[doc('Sync Recipes')]
mod sync '.just/sync.just'
[doc('Talos Recipes')]
mod talos '.just/talos.just'
[doc('Volsync')]
mod volsync '.just/volsync.just'
[private]
default:
just --list
[positional-arguments, private]
log lvl msg *args:
gum log -t rfc3339 -s -l "{{lvl}}" "{{msg}}" {{args}}