mirror of https://github.com/helm/helm
Merge pull request #30912 from Bhargavkonidena/fix_30893
Fix #30893 - issue templatespull/12837/merge
commit
8e69436435
@ -0,0 +1,69 @@
|
||||
name: Bug Report
|
||||
description: Report a bug encountered in Helm
|
||||
labels: kind/bug
|
||||
body:
|
||||
- type: textarea
|
||||
id: problem
|
||||
attributes:
|
||||
label: What happened?
|
||||
description: |
|
||||
Please provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner.
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: expected
|
||||
attributes:
|
||||
label: What did you expect to happen?
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: repro
|
||||
attributes:
|
||||
label: How can we reproduce it (as minimally and precisely as possible)?
|
||||
description: |
|
||||
Please list steps someone can follow to trigger the issue.
|
||||
|
||||
For example:
|
||||
1. Run `helm install mychart ./path-to-chart -f values.yaml --debug`
|
||||
2. Observe the following error: ...
|
||||
|
||||
You can include:
|
||||
- a sample `values.yaml` block
|
||||
- a link to a chart
|
||||
- specific `helm` commands used
|
||||
|
||||
This helps others reproduce and debug your issue more effectively.
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: helmVersion
|
||||
attributes:
|
||||
label: Helm version
|
||||
value: |
|
||||
<details>
|
||||
```console
|
||||
$ helm version
|
||||
# paste output here
|
||||
```
|
||||
</details>
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: kubeVersion
|
||||
attributes:
|
||||
label: Kubernetes version
|
||||
value: |
|
||||
<details>
|
||||
|
||||
```console
|
||||
$ kubectl version
|
||||
# paste output here
|
||||
```
|
||||
|
||||
</details>
|
||||
validations:
|
||||
required: true
|
@ -0,0 +1,27 @@
|
||||
name: Documentation
|
||||
description: Report any mistakes or missing information from the documentation or the examples
|
||||
labels: kind/documentation
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
⚠️ **Note**: Most documentation lives in [helm/helm-www](https://github.com/helm/helm-www).
|
||||
If your issue is about Helm website documentation or examples, please [open an issue there](https://github.com/helm/helm-www/issues/new/choose).
|
||||
|
||||
- type: textarea
|
||||
id: feature
|
||||
attributes:
|
||||
label: What would you like to be added?
|
||||
description: |
|
||||
Link to the issue (please include a link to the specific documentation or example).
|
||||
Link to the issue raised in [Helm Documentation Improvement Proposal](https://github.com/helm/helm-www)
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: rationale
|
||||
attributes:
|
||||
label: Why is this needed?
|
||||
validations:
|
||||
required: true
|
||||
|
@ -0,0 +1,21 @@
|
||||
name: Enhancement/feature
|
||||
description: Provide supporting details for a feature in development
|
||||
labels: kind/feature
|
||||
body:
|
||||
- type: textarea
|
||||
id: feature
|
||||
attributes:
|
||||
label: What would you like to be added?
|
||||
description: |
|
||||
Feature requests are unlikely to make progress as issues.
|
||||
Initial discussion and ideas can happen on an issue.
|
||||
But significant changes or features must be proposed as a [Helm Improvement Proposal](https://github.com/helm/community/blob/main/hips/hip-0001.md) (HIP)
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: rationale
|
||||
attributes:
|
||||
label: Why is this needed?
|
||||
validations:
|
||||
required: true
|
@ -1,9 +0,0 @@
|
||||
<!-- If you need help or think you have found a bug, please help us with your issue by entering the following information (otherwise you can delete this text): -->
|
||||
|
||||
Output of `helm version`:
|
||||
|
||||
Output of `kubectl version`:
|
||||
|
||||
Cloud Provider/Platform (AKS, GKE, Minikube etc.):
|
||||
|
||||
|
Loading…
Reference in new issue