Add just to simply helm commands

This commit is contained in:
Grant 2025-03-15 15:08:12 -06:00
parent f7c8a0e8bc
commit f2c9ab770f

15
justfile Normal file
View File

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