-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from Madhu-1/add-template
Add template for the .github
- Loading branch information
Showing
4 changed files
with
137 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
|
||
--- | ||
|
||
# Describe the bug # | ||
|
||
A clear and concise description of what the bug is. | ||
|
||
# Environment details # | ||
|
||
- Image/version of ceph-csi-operator : | ||
- Image/version of Ceph-CSI driver : | ||
- Kubernetes cluster version : | ||
- Ceph cluster version : | ||
|
||
# Steps to reproduce # | ||
|
||
Steps to reproduce the behavior: | ||
|
||
1. Setup details: '...' | ||
1. Deployment to trigger the issue '....' | ||
1. See error | ||
|
||
# Actual results # | ||
|
||
Describe what happened | ||
|
||
# Expected behavior # | ||
|
||
A clear and concise description of what you expected to happen. | ||
|
||
# Logs # | ||
|
||
# Additional context # | ||
|
||
Add any other context about the problem here. | ||
|
||
For example: | ||
|
||
Any existing bug report which describe about the similar issue/behavior |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
|
||
--- | ||
|
||
# Describe the feature you'd like to have # | ||
|
||
What new functionality do you want? | ||
|
||
# Who is the end user and what is the use case where this feature will be valuable? | ||
|
||
Who is going to use this feature and under what circumstances? | ||
|
||
# How will we know we have a good solution? (acceptance criteria) # | ||
|
||
Add a list of criteria that should be met for this feature to be useful | ||
|
||
# Additional context # | ||
|
||
Add any other context or screenshots about the feature request here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
version: 2 | ||
enable-beta-ecosystems: true | ||
updates: | ||
# Dependencies listed in go.mod | ||
- package-ecosystem: "gomod" | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" | ||
groups: | ||
golang-dependencies: | ||
patterns: | ||
- "github.com/golang*" | ||
k8s-dependencies: | ||
patterns: | ||
- "k8s.io*" | ||
- "sigs.k8s.io*" | ||
github-dependencies: | ||
patterns: | ||
- "github.com*" | ||
|
||
# Dependencies listed in .github/workflows/*.yml | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<!-- Please take a look at our [Contributing](https://github.com/ceph/ceph-csi-operator/blob/main/docs/development-guide.md#Code-contribution-workflow) | ||
documentation before submitting a Pull Request! | ||
Thank you for contributing to ceph-csi-operator! --> | ||
|
||
# Describe what this PR does # | ||
|
||
Provide some context for the reviewer | ||
|
||
## Is there anything that requires special attention ## | ||
|
||
Do you have any questions? | ||
|
||
Is the change backward compatible? | ||
|
||
Are there concerns around backward compatibility? | ||
|
||
Provide any external context for the change, if any. | ||
|
||
For example: | ||
|
||
* Kubernetes links that explain why the change is required | ||
* Ceph-CSI spec related changes/catch-up that necessitates this patch | ||
* golang related practices that necessitates this change | ||
|
||
## Related issues ## | ||
|
||
Mention any github issues relevant to this PR. Adding below line | ||
will help to auto close the issue once the PR is merged. | ||
|
||
Fixes: #issue_number | ||
|
||
## Future concerns ## | ||
|
||
List items that are not part of the PR and do not impact it's | ||
functionality, but are work items that can be taken up subsequently. | ||
|
||
**Checklist:** | ||
|
||
* [ ] **Commit Message Formatting**: Commit titles and messages follow | ||
guidelines in the [developer | ||
guide](https://github.com/ceph/ceph-csi-operator/blob/devel/docs/development-guide.md#commit-messages). | ||
* [ ] Reviewed the developer guide on [Submitting a Pull | ||
Request](https://github.com/ceph/ceph-csi-operator/blob/devel/docs/development-guide.md#development-workflow) | ||
* [ ] [Pending release | ||
notes](https://github.com/ceph/ceph-csi-operator/blob/devel/PendingReleaseNotes.md) | ||
updated with breaking and/or notable changes for the next major release. | ||
* [ ] Documentation has been updated, if necessary. | ||
* [ ] Unit tests have been added, if necessary. | ||
* [ ] Integration tests have been added, if necessary. |