59 lines
1.8 KiB
YAML
59 lines
1.8 KiB
YAML
name: Bug Report
|
|
description: File a bug report
|
|
title: "[Bug]: "
|
|
labels: ["bug", "triage"]
|
|
assignees:
|
|
- fireflycons
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
# Read This First!
|
|
Thanks for taking the time to fill out this bug report!
|
|
You should only use this form to report issues with deploying Kubernetes The Hard Way.
|
|
Please *do not* use this form to ask questions about courses or exams, issues with courses, lecture requests etc.
|
|
Use instead the KodeKloud Forum https://kodekloud.com/community/ as you will get a much faster answer there.
|
|
- type: dropdown
|
|
id: workstation
|
|
attributes:
|
|
label: Your Workstation
|
|
description: "Please tell us what kind of machine you have"
|
|
multiple: false
|
|
options:
|
|
- "Please Select -->"
|
|
- Windows (10 or 11)
|
|
- Intel Mac
|
|
- Apple Silicon Mac (M1/M2/M3)
|
|
- Other (specify in What Happened box)
|
|
default: 0
|
|
validations:
|
|
required: true
|
|
- type: dropdown
|
|
id: ram
|
|
attributes:
|
|
label: System Memory
|
|
description: "Please tell us how much memory your system has"
|
|
multiple: false
|
|
options:
|
|
- "Please Select -->"
|
|
- Less than 8GB
|
|
- More than 8GB, less than 16GB
|
|
- 16GB or more
|
|
default: 0
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: what-happened
|
|
attributes:
|
|
label: What happened?
|
|
description: Also tell us, what did you expect to happen?
|
|
placeholder: Tell us what you see!
|
|
value: "A bug happened!"
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: logs
|
|
attributes:
|
|
label: Relevant output
|
|
description: Please copy and paste any relevant console output. This will be automatically formatted into code, so no need for backticks.
|
|
render: shell |