Skip to content

Commit 6d348e7

Browse files
authored
Merge pull request #430 from willcl-ark/josie-fixups
2 parents 33fbe8c + f097178 commit 6d348e7

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

docs/quickrun.md

+1-1
Original file line numberDiff line numberDiff 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

resources/scripts/stop.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,6 @@ kubectl delete namespace warnet-logging --ignore-not-found
99
kubectl 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

src/warnet/cli/cluster.py

+1-2
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)