File tree 3 files changed +5
-4
lines changed
3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ warcli cluster deploy
51
51
52
52
...to deploy warnet to your cluster.
53
53
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.
55
55
56
56
## Stopping
57
57
Original file line number Diff line number Diff line change @@ -9,4 +9,6 @@ kubectl delete namespace warnet-logging --ignore-not-found
9
9
kubectl config set-context --current --namespace=default
10
10
11
11
# 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():
22
22
"""Start, configure and stop a warnet k8s cluster\n
23
23
\b
24
24
Supports chaining, e.g:
25
- warcli cluster deploy
26
- warcli cluster teardown
25
+ warcli cluster deploy-logging connect-logging
27
26
"""
28
27
pass
29
28
You can’t perform that action at this time.
0 commit comments