mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 07:57:07 +00:00
* add cherry pick requirement Signed-off-by: Chip Zoller <chipzoller@gmail.com> * adopt github issue forms Signed-off-by: Chip Zoller <chipzoller@gmail.com> * update PR template with test checklist reminders Signed-off-by: Chip Zoller <chipzoller@gmail.com> * Add "other" issue template Signed-off-by: Chip Zoller <chipzoller@gmail.com> * add "triage" label to all new issues Signed-off-by: Chip Zoller <chipzoller@gmail.com> * notes change Signed-off-by: Chip Zoller <chipzoller@gmail.com> * show warnings Signed-off-by: Chip Zoller <chipzoller@gmail.com> * update version numbers in issue templates Signed-off-by: Chip Zoller <chipzoller@gmail.com> * add CI file per comments Signed-off-by: Chip Zoller <chipzoller@gmail.com> * new line for linting Signed-off-by: Chip Zoller <chipzoller@gmail.com> * stop being smart Signed-off-by: Chip Zoller <chipzoller@gmail.com> * remove ci file Signed-off-by: Chip Zoller <chipzoller@gmail.com> Co-authored-by: shuting <shuting@nirmata.com> Co-authored-by: treydock <tdockendorf@osc.edu> Co-authored-by: Vyankatesh Kudtarkar <vyankateshkd@gmail.com> Co-authored-by: Charles-Edouard Brétéché <charled.breteche@gmail.com>
94 lines
No EOL
3.4 KiB
YAML
94 lines
No EOL
3.4 KiB
YAML
name: "Bug Report: CLI"
|
|
description: Report a bug in the Kyverno CLI.
|
|
title: "[Bug] [CLI] "
|
|
labels: ["bug", "type:cli", "triage"]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Please tell us about the bug, but before doing so ensure you have read the documentation on the CLI functionality found [here](https://kyverno.io/docs/kyverno-cli/).
|
|
- type: dropdown
|
|
id: kyverno-version
|
|
attributes:
|
|
label: Kyverno CLI Version
|
|
description: >-
|
|
What version of the Kyverno CLI are you running (`kyverno version`)?
|
|
options:
|
|
- 1.4.x
|
|
- 1.5.x
|
|
- 1.6.0
|
|
- 1.6.1
|
|
- 1.6.2
|
|
- 1.7.0
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: bug-description
|
|
attributes:
|
|
label: Description
|
|
description: Describe what happened.
|
|
# placeholder: Tell us what you see!
|
|
# value: "asdf"
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: bug-reproduce-steps
|
|
attributes:
|
|
label: Steps to reproduce
|
|
description: >-
|
|
What are the exact steps needed to reproduce the bug you experienced? Please provide any and all manifests needed to reproduce your issue, including Kyverno policies and test Kubernetes resources.
|
|
GitHub supports [syntax highlighting](https://docs.github.com/en/github/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks#syntax-highlighting) with code blocks.
|
|
# placeholder: Tell us what you see!
|
|
value: |-
|
|
1.
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: bug-expectations
|
|
attributes:
|
|
label: Expected behavior
|
|
description: What did you expect to happen?
|
|
# placeholder: Tell us what you see!
|
|
# value: "asdf"
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: bug-screenshots
|
|
attributes:
|
|
label: Screenshots
|
|
description: >-
|
|
If you have any screenshots that would help, please paste them below.
|
|
GitHub allows you to copy-and-paste directly from the clipboard into the text area.
|
|
**Please avoid taking screenshots of either log or terminal output**; paste any textual output in the logs section below.
|
|
# placeholder: Tell us what you see!
|
|
# value: "asdf"
|
|
validations:
|
|
required: false
|
|
- type: textarea
|
|
id: logs
|
|
attributes:
|
|
label: Kyverno logs
|
|
description: >-
|
|
Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
|
|
Kyverno CLI logs may be found by passing the -v flag to any command.
|
|
render: shell
|
|
- type: input
|
|
id: slack
|
|
attributes:
|
|
label: Slack discussion
|
|
description: >-
|
|
If this issue is the result of a discussion thread on Slack, please provide the link to the discussion for reference.
|
|
# placeholder: ex. email@example.com
|
|
validations:
|
|
required: false
|
|
- type: checkboxes
|
|
id: troubleshooting
|
|
attributes:
|
|
label: Troubleshooting
|
|
description: >-
|
|
By submitting this issue, you agree that you have performed some basic attempts at researching and solving your problem.
|
|
options:
|
|
- label: I have read and followed the [troubleshooting guide](https://kyverno.io/docs/troubleshooting/).
|
|
required: true
|
|
- label: I have searched other issues in this repository and mine is not recorded.
|
|
required: true |