mirror of
https://github.com/auricom/home-cluster.git
synced 2025-09-17 18:24:14 +02:00
28 lines
519 B
Makefile
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}}
|