fog/justfile
2025-03-22 21:57:10 -06:00

16 lines
327 B
Makefile

update:
bws run 'helmfile deps'
deploy ARGS='':
bws run 'helmfile apply {{ARGS}}'
sdiff ARGS='':
bws run 'helmfile diff --output simple'
ddiff ARGS='':
bws run 'helmfile diff --output dyff'
cleanuppods:
kubectl get pods --no-headers | grep -v Running | awk '{print $1}' | xargs kubectl delete pod