added K8s v1.22 tip for kind cluster,bug-report (#7437)
This commit is contained in:
parent
390bd257e7
commit
5c98c93f0f
2 changed files with 26 additions and 0 deletions
25
.github/ISSUE_TEMPLATE/bug_report.md
vendored
25
.github/ISSUE_TEMPLATE/bug_report.md
vendored
|
@ -37,7 +37,32 @@ This questions are the first thing we need to know to understand the context.
|
||||||
- **OS** (e.g. from /etc/os-release):
|
- **OS** (e.g. from /etc/os-release):
|
||||||
- **Kernel** (e.g. `uname -a`):
|
- **Kernel** (e.g. `uname -a`):
|
||||||
- **Install tools**:
|
- **Install tools**:
|
||||||
|
- `Please mention how/where was clsuter created like kubeadm/kops/minikube/kind etc. `
|
||||||
|
- **Basic cluster related info**:
|
||||||
|
- `kubectl version`
|
||||||
|
- `kubectl get nodes -o wide`
|
||||||
|
|
||||||
|
- **How was the ingress-nginx-controller installed**:
|
||||||
|
- If helm was used then please show output of `helm ls -A`
|
||||||
|
- If helm was used then please show output of `helm -n <ingresscontrollernamepspace> get values <helmreleasename>`
|
||||||
|
- If helm was not used, then please explain how the ingress-nginx-controller was installed or copy/paste the command used to install the controller below
|
||||||
|
- if you have more than one instance of the ingress-nginx-controller installed in the same cluster, please provide details for all the instances
|
||||||
|
|
||||||
|
- **Current State of the controller**:
|
||||||
|
- `kubectl -n <ingresscontrollernamespace> get all -A -o wide`
|
||||||
|
- `kubectl -n <ingresscontrollernamespace> describe po <ingresscontrollerpodname>`
|
||||||
|
- `kubectl -n <ingresscontrollernamespace> describe svc <ingresscontrollerservicename>`
|
||||||
|
|
||||||
|
- **Current state of ingress object, if applicable**:
|
||||||
|
- `kubectl -n <appnnamespace> get all,ing -o wide`
|
||||||
|
- `kubectl -n <appnamespace> describe ing <ingressname>`
|
||||||
|
- If applicable, then, your complete and exact curl/grpcurl command (redacted if required) and the reponse to the curl/grpcurl command with the -v flag
|
||||||
|
|
||||||
- **Others**:
|
- **Others**:
|
||||||
|
- Any other related information like ;
|
||||||
|
- copy/paste of the snippet (if applicable)
|
||||||
|
- `kubectl describe ...` of any custom configmap(s) created and in use
|
||||||
|
- Any other related information that may help
|
||||||
|
|
||||||
**What happened**:
|
**What happened**:
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,7 @@ Start a local Kubernetes cluster using [kind](https://kind.sigs.k8s.io/), build
|
||||||
```console
|
```console
|
||||||
make dev-env
|
make dev-env
|
||||||
```
|
```
|
||||||
|
- If you are working on the v1.x.x version of this controler, and you want to create a cluster with kubernetes version 1.22, then please visit the [documentation for kind](https://kind.sigs.k8s.io/docs/user/configuration/#a-note-on-cli-parameters-and-configuration-files), and look for how to set a custom image for the kind node (image: kindest/node...), in the kind config file.
|
||||||
|
|
||||||
### Testing
|
### Testing
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue