diff --git a/justfile b/justfile new file mode 100644 index 0000000..362be62 --- /dev/null +++ b/justfile @@ -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 +