Skip to content

Commit b46a3c2

Browse files
authored
Merge pull request #963 from michal-hudy/fix-docs
Update deployment command in documentation
2 parents 384f6ce + d2a10ec commit b46a3c2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/book/src/cronjob-tutorial/running.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Now that we know it's working, we can run it in the cluster. Stop the
6262

6363
```bash
6464
make docker-build docker-push IMG=<some-registry>/controller
65-
make deploy
65+
make deploy IMG=<some-registry>/controller
6666
```
6767

6868
If we list cronjobs again like we did before, we should see the controller

docs/book/src/quick-start.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@ Build and push your image to the location specified by `IMG`:
9696
make docker-build docker-push IMG=<some-registry>/controller
9797
```
9898

99-
Deploy the controller to the cluster:
99+
Deploy the controller to the cluster with image specified by `IMG`:
100100

101101
```bash
102-
make deploy
102+
make deploy IMG=<some-registry>/controller
103103
```
104104

105105
If you encounter RBAC errors, you may need to grant yourself cluster-admin

0 commit comments

Comments
 (0)