...

Text file src/k8s.io/kubernetes/.github/ISSUE_TEMPLATE/bug-report.yaml

Documentation: k8s.io/kubernetes/.github/ISSUE_TEMPLATE

     1name: Bug Report
     2description: Report a bug encountered while operating Kubernetes
     3labels: kind/bug
     4body:
     5  - type: textarea
     6    id: problem
     7    attributes:
     8      label: What happened?
     9      description: |
    10        Please provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner.
    11        If this matter is security related, please disclose it privately via https://kubernetes.io/security
    12    validations:
    13      required: true
    14
    15  - type: textarea
    16    id: expected
    17    attributes:
    18      label: What did you expect to happen?
    19    validations:
    20      required: true
    21
    22  - type: textarea
    23    id: repro
    24    attributes:
    25      label: How can we reproduce it (as minimally and precisely as possible)?
    26    validations:
    27      required: true
    28
    29  - type: textarea
    30    id: additional
    31    attributes:
    32      label: Anything else we need to know?
    33
    34  - type: textarea
    35    id: kubeVersion
    36    attributes:
    37      label: Kubernetes version
    38      value: |
    39        <details>
    40
    41        ```console
    42        $ kubectl version
    43        # paste output here
    44        ```
    45
    46        </details>
    47    validations:
    48      required: true
    49
    50  - type: textarea
    51    id: cloudProvider
    52    attributes:
    53      label: Cloud provider
    54      value: |
    55        <details>
    56
    57        </details>
    58    validations:
    59      required: true
    60
    61  - type: textarea
    62    id: osVersion
    63    attributes:
    64      label: OS version
    65      value: |
    66        <details>
    67
    68        ```console
    69        # On Linux:
    70        $ cat /etc/os-release
    71        # paste output here
    72        $ uname -a
    73        # paste output here
    74
    75        # On Windows:
    76        C:\> wmic os get Caption, Version, BuildNumber, OSArchitecture
    77        # paste output here
    78        ```
    79
    80        </details>
    81
    82  - type: textarea
    83    id: installer
    84    attributes:
    85      label: Install tools
    86      value: |
    87        <details>
    88
    89        </details>
    90
    91  - type: textarea
    92    id: runtime
    93    attributes:
    94      label: Container runtime (CRI) and version (if applicable)
    95      value: |
    96        <details>
    97
    98        </details>
    99
   100  - type: textarea
   101    id: plugins
   102    attributes:
   103      label: Related plugins (CNI, CSI, ...) and versions (if applicable)
   104      value: |
   105        <details>
   106
   107        </details>

View as plain text