File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ warcli cluster deploy
5151
5252...to deploy warnet to your cluster.
5353
54- ` warcli deploy ` also automatically configures port forwarding to the Server in the cluster.
54+ ` warcli cluster deploy ` also automatically configures port forwarding to the Server in the cluster.
5555
5656## Stopping
5757
Original file line number Diff line number Diff line change @@ -9,4 +9,6 @@ kubectl delete namespace warnet-logging --ignore-not-found
99kubectl config set-context --current --namespace=default
1010
1111# Delete minikube, if it exists
12- minikube delete || true
12+ if command -v minikube & > /dev/null; then
13+ minikube delete || true
14+ fi
Original file line number Diff line number Diff line change @@ -22,8 +22,7 @@ def cluster():
2222 """Start, configure and stop a warnet k8s cluster\n
2323 \b
2424 Supports chaining, e.g:
25- warcli cluster deploy
26- warcli cluster teardown
25+ warcli cluster deploy-logging connect-logging
2726 """
2827 pass
2928
You can’t perform that action at this time.
0 commit comments