sigs.k8s.io/kubebuilder/v3@v3.14.0/.github/ISSUE_TEMPLATE/feature_request.yaml (about)

     1  name: Feature request
     2  description: Suggest an idea for this project or its docs
     3  labels:
     4  - kind/feature
     5  body:
     6  - type: markdown
     7    attributes:
     8      value: |
     9        :warning: **Stop!** :warning:
    10  
    11        * If this is an issue with some sort of **runtime mechanics**,
    12          it probably belongs in [controller-runtime][cr-issue] instead
    13  
    14        * If this is an issue with **CRD generation**, webhook config generation,
    15          or deepcopy generation, it probably belongs in [controller-tools][ct-issue].
    16  
    17        * If this is an issue with **scaffolding**, or is definitely a
    18          cross-repository effort, it probably belongs here.  Feel free to continue :wink:
    19  
    20        [cr-issue]: https://github.com/kubernetes-sigs/controller-runtime/issues/new
    21        [ct-issue]: https://github.com/kubernetes-sigs/controller-tools/issues/new
    22  
    23  - type: markdown
    24    attributes:
    25      value: |
    26        # Hiya!  Welcome to Kubebuilder!
    27  
    28        For a smooth issue process, try to answer the following questions.
    29        Don't worry if they're not all applicable; just try to include what you can :smile:
    30  
    31        If you need to include code snippets or logs, please put them in fenced code
    32        blocks, and if they're really long, use the [`<details>` tag][mdn-details], like:
    33  
    34        <details>
    35  
    36        <summary>Code & details examples</summary>
    37  
    38        `````markdown
    39        Some code written in Go:
    40  
    41        ```go
    42        type Manager struct {
    43          // FixTheBug removes all bugs from controller-runtime
    44          FixTheBug bool
    45        }
    46        ```
    47  
    48        <details>
    49  
    50        <summary>Some really long logs</summary>
    51  
    52        ```
    53        ok
    54        ok
    55        ok
    56        SHOOT A BUG HAPPENS HERE OH NO
    57        ok
    58        ok
    59        done
    60        ```
    61  
    62        </details>
    63  
    64        `````
    65  
    66        [mdn-details]: ://developer.mozilla.org/en-US/docs/Web/HTML/Element/details
    67  
    68  - type: textarea
    69    attributes:
    70      label: What do you want to happen?
    71      description: |
    72        Describe the feature you want, and what the motivation is.
    73  
    74        What are your use cases?  Why should we do this?
    75  
    76        Does it require a particular Kubernetes version?
    77  
    78        Is there currently another issue associated with this (use github syntax
    79        like `#xyz` to link to it)?
    80    validations: {required: true}
    81  
    82  - type: dropdown
    83    attributes:
    84      label: "Extra Labels"
    85      description: |
    86        If this is *also* a documentation request, etc, please select that below.
    87      multiple: true
    88      options:
    89      - "/kind documentation"
    90      - "/kind regression"
    91      - "/kind deprecation"
    92      - "/kind cleanup"