-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Update kind docs #6573
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update kind docs #6573
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -87,13 +87,39 @@ To get a local deployment of Knative, run the `quickstart` plugin: | |
| ```bash | ||
| netstat -tnlp | grep 80 | ||
| ``` | ||
|
|
||
| 1. After the plugin is finished, verify you have a cluster called `knative`: | ||
|
|
||
| ```bash | ||
| kind get clusters | ||
| ``` | ||
|
|
||
| Here is the polished Markdown, ready to copy and paste directly into a GitHub issue or PR description: | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this an instructions from an LLM that you copied into the PR by accident?
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Right, I wrote my version, and polished it with LLM to be uniform with the style. Here, I will remove this part! 😅😅
ramirobg94 marked this conversation as resolved.
Outdated
|
||
|
|
||
|
|
||
| ### Troubleshooting: Kubernetes Version Mismatch | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This doesn't render properly for some reason |
||
|
|
||
| If the installation times out or pods fail to start, your Kind cluster (Server) version might be incompatible with your local `kubectl` (Client) version. | ||
|
|
||
| 1. Check your current versions: | ||
| ```bash | ||
| kubectl version | ||
|
|
||
| ``` | ||
|
|
||
| 2. If the **Server Version** is significantly older than your **Client Version** (or you see a version skew warning), you should recreate the cluster using a matching version: | ||
| ```bash | ||
| # Replace 1.XX.Y with your Client Version (e.g., 1.35.0) | ||
| kn-quickstart kind --kubernetes-version 1.XX.Y | ||
|
|
||
| ``` | ||
|
|
||
|
|
||
| For more details on version compatibility, see the [Kind Known Issues](https://kind.sigs.k8s.io/docs/user/known-issues/). | ||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
| === "Using minikube" | ||
|
|
||
| 1. Install Knative and Kubernetes in a [minikube](https://minikube.sigs.k8s.io/docs/start/) instance by running: | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this new line is necessary otherwise rendering is weird