-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into skipConfig
- Loading branch information
Showing
27 changed files
with
647 additions
and
332 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,9 @@ | ||
# Set update schedule for GitHub Actions | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
# Check for updates to GitHub Actions every week | ||
interval: "weekly" | ||
day: monday |
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,23 @@ | ||
<!-- | ||
Thank you for contributing to CoreDNS! | ||
Please provide the following information to help us make the most of your pull request: | ||
--> | ||
#### Why is this pull request needed and what does it do? | ||
|
||
#### Which issues (if any) are related? | ||
|
||
|
||
Checklist: | ||
|
||
* [ ] I have bumped the chart version according to [versioning](https://github.com/coredns/helm/blob/master/CONTRIBUTING.md#versioning). | ||
* [ ] I have updated the chart changelog with all the changes that come with this pull request according to [changelog](https://github.com/coredns/helm/blob/master/CONTRIBUTING.md#changelog). | ||
* [ ] Any new values are backwards compatible and/or have sensible default. | ||
* [ ] I have signed off all my commits as required by [DCO](https://github.com/coredns/helm/blob/master/CONTRIBUTING.md#developer-certificate-of-origin). | ||
|
||
Changes are automatically published when merged to `main`. They are not published on branches. | ||
|
||
<details> | ||
<summary>Note on DCO</summary> | ||
|
||
If the DCO action in the integration test fails, one or more of your commits are not signed off. Please click on the *Details* link next to the DCO action for instructions on how to resolve this. | ||
|
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
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
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
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,3 @@ | ||
## Coredns Community Code of Conduct | ||
|
||
Coredns follows the [CNCF Code of Conduct](https://github.com/cncf/foundation/blob/master/code-of-conduct.md). |
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,77 @@ | ||
# Contributing to CoreDNS Helm Chart | ||
|
||
Welcome! Our community focuses on helping others and making CoreDNS the best it can be. We gladly accept contributions and encourage you to get involved! | ||
|
||
## Issues | ||
|
||
Before opening a new issue please search the [issue list](https://github.com/coredns/helm/issues) to ensure the issue hasn't been already reported. | ||
|
||
If not, [open an issue](https://github.com/coredns/coredns/issues) and answer the questions so we can understand and reproduce the problematic behavior. | ||
|
||
Please be aware that CoreDNS can be extremely flexible and offered as an add-on by many distros. While we strive to keep an open mind about supporting as many use cases as possible, we want to focus on things that fit *this* chart's use cases and not on a specific vendor installation or offering of CoreDNS. | ||
|
||
## Pull Requests | ||
|
||
Submit minor improvements or changes any time. For larger changes please raise an issue beforehand so we can coordinate the work and make sure the change is aligned with the chart's purpose. | ||
|
||
When submitting a pull request, please be mindful of the following: | ||
|
||
### Versioning | ||
|
||
We follow the [semver standard](https://semver.org/) for versioning. | ||
|
||
Please ensure chart version changes adhere to semantic versioning standards: | ||
|
||
* Major: Large chart rewrites, major non-backwards compatible or destructive changes | ||
* Minor: New chart functionality (sidecars), major application updates or minor non-backwards compatible changes | ||
* Patch: App version patch updates, backwards compatible optional chart features | ||
|
||
### Changelog | ||
|
||
As the chart is also published on Artifact Hub, we require a changelog per new chart release. Changes on a chart must be documented in a chart specific changelog in the `Chart.yaml` [Annotation Section](https://helm.sh/docs/topics/charts/#the-chartyaml-file). | ||
|
||
A new `artifacthub.io/changes` needs to be written covering only the changes since the previous release. Each change requires a new bullet point following the pattern. See more information [Artifact Hub annotations in Helm Chart.yaml file](https://artifacthub.io/docs/topics/annotations/helm/). | ||
|
||
```yaml | ||
- kind: {type} | ||
description: {description} | ||
``` | ||
You can use the following template: | ||
```yaml | ||
name: coredns | ||
version: 1.19.6 | ||
... | ||
annotations: | ||
artifacthub.io/changes: | | ||
- kind: added | ||
description: Something New was added | ||
- kind: changed | ||
description: Changed Something within this chart | ||
- kind: changed | ||
description: Changed Something else within this chart | ||
- kind: deprecated | ||
description: Something deprecated | ||
- kind: removed | ||
description: Something was removed | ||
- kind: fixed | ||
description: Something was fixed | ||
- kind: security | ||
description: Some Security Patch was included | ||
``` | ||
### Developer Certificate of Origin | ||
As required by the CNCF's [charter](https://github.com/cncf/foundation/blob/master/charter.md#11-ip-policy), | ||
all new code contributions must be accompanied by a [Developer Certificate of Origin (DCO)](https://developercertificate.org/). CoreDNS uses [Probot](https://github.com/probot/dco#how-it-works) to enforce the DCO on pull requests. | ||
You may use git option `-s` to append automatically to the `Sign-off-by` line to your commit messages: | ||
|
||
``` | ||
$ git commit -s -m 'This is my commit message' | ||
``` | ||
# Thank You | ||
Thanks for your help! CoreDNS would not be what it is today without your contributions. |
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
Oops, something went wrong.