From f2c9ab770ff34cdc17f10b3708352d238eb99a9e Mon Sep 17 00:00:00 2001 From: Grant <5445379+grantdhunter@users.noreply.github.com> Date: Sat, 15 Mar 2025 15:08:12 -0600 Subject: [PATCH] Add just to simply helm commands --- justfile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 justfile 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 +