Skip to content

Commit

Permalink
docs: fix incorrect wait condition
Browse files Browse the repository at this point in the history
Signed-off-by: Neko Ayaka <[email protected]>
  • Loading branch information
nekomeowww committed Apr 20, 2024
1 parent 82e6014 commit e6a06f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ kubectl apply -f https://raw.githubusercontent.com/nekomeowww/ollama-operator/ma
### Wait for the operator to be ready

```shell
kubectl wait --for=jsonpath='{.status.replicas}'=2 deployment/ollama-operator-controller-manager -n ollama-operator-system
kubectl wait --for=jsonpath='{.status.readyReplicas}'=1 deployment/ollama-operator-controller-manager -n ollama-operator-system
```

### Deploy a model
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/en/snippets/install-ollama-operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ kubectl apply -f https://raw.githubusercontent.com/nekomeowww/ollama-operator/ma
2. Wait for the operator to be ready:

```shell
kubectl wait --for=jsonpath='{.status.replicas}'=2 deployment/ollama-operator-controller-manager -n ollama-operator-system
kubectl wait --for=jsonpath='{.status.readyReplicas}'=1 deployment/ollama-operator-controller-manager -n ollama-operator-system
```

0 comments on commit e6a06f1

Please sign in to comment.