aboutsummaryrefslogtreecommitdiff
path: root/justfile
diff options
context:
space:
mode:
Diffstat (limited to 'justfile')
-rw-r--r--justfile5
1 files changed, 4 insertions, 1 deletions
diff --git a/justfile b/justfile
index 7c7b562..073aa34 100644
--- a/justfile
+++ b/justfile
@@ -44,7 +44,10 @@ localdeploy:
kustomize build manifests/local | kubectl apply -f -
local-cluster:
- k3d cluster create go-git-cluster --registry-create go-git-registry
+ k3d cluster create go-git-cluster --registry-create go-git-registry:5000
+
+local-cluster-clean:
+ k3d cluster delete go-git-cluster
debug-test pkg func:
dlv test {{pkg}} -- -test.v -test.run {{func}}