You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
📖 Minor Documentation Improvements: Add Links, Fix Typos, and Clarify Instructions (#4093)
This pull request includes several small but important improvements to the documentation, aimed at enhancing clarity and providing additional resources:
- Added a link to the CronJob Tutorial in the "Next Steps" section of the Getting Started guide.
- Fixed minor issues with documentation headings and improved consistency in the Quick Start guide.
- Clarified the need to push images in the Running guide with an added note.
- Recommended using Kind for testing in the Getting Started guide.
- Corrected a typo in the link to the Kind guide.
- Added a brief note in the "Next Steps" section about the Deploy Image plugin to offer further guidance.
Copy file name to clipboardExpand all lines: docs/book/src/cronjob-tutorial/running.md
+16-1Lines changed: 16 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -74,11 +74,26 @@ make deploy IMG=<some-registry>/<project-name>:tag
74
74
```
75
75
76
76
<asideclass="note">
77
-
<h1>registry permission</h1>
77
+
<h1>Registry Permission</h1>
78
78
79
79
This image ought to be published in the personal registry you specified. And it is required to have access to pull the image from the working environment.
80
80
Make sure you have the proper permission to the registry if the above commands don't work.
81
81
82
+
Consider incorporating Kind into your workflow for a faster, more efficient local development and CI experience.
83
+
Note that, if you're using a Kind cluster, there's no need to push your image to a remote container registry.
84
+
You can directly load your local image into your specified Kind cluster:
To know more, see: [Using Kind For Development Purposes and CI](./../reference/kind.md)
91
+
92
+
<h1>RBAC errors</h1>
93
+
94
+
If you encounter RBAC errors, you may need to grant yourself cluster-admin
95
+
privileges or be logged in as admin. See [Prerequisites for using Kubernetes RBAC on GKE cluster v1.11.x and older][pre-rbc-gke] which may be your case.
96
+
82
97
</aside>
83
98
84
99
If we list cronjobs again like we did before, we should see the controller
Copy file name to clipboardExpand all lines: docs/book/src/quick-start.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -220,7 +220,7 @@ make deploy IMG=<some-registry>/<project-name>:tag
220
220
```
221
221
222
222
<asideclass="note">
223
-
<h1>Registry permission</h1>
223
+
<h1>Registry Permission</h1>
224
224
225
225
This image ought to be published in the personal registry you specified. And it is required to have access to pull the image from the working environment.
226
226
Make sure you have the proper permission to the registry if the above commands don't work.
@@ -233,7 +233,7 @@ You can directly load your local image into your specified Kind cluster:
0 commit comments