-
Notifications
You must be signed in to change notification settings - Fork 67
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 #2 from KongZ/upgrade-to-170
Upgrade to 1.7.0
- Loading branch information
Showing
15 changed files
with
327 additions
and
29 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,70 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: 'issue title' | ||
labels: 'bug' | ||
assignees: '' | ||
|
||
--- | ||
|
||
<!-- Thanks for filing an issue! | ||
Before hitting the button, please answer these questions. | ||
It's helpful to search the existing GitHub issues first. | ||
It's likely that another user has already reported the issue you're facing, or it's a known issue that we're already aware o. | ||
Fill in as much of the template below as you can. | ||
The more information we have the better we can help you. | ||
Be ready for followup questions, and please respond in a timely manner. | ||
If we can't reproduce a bug or think a feature already exists, we might close your issue. | ||
If we're wrong, PLEASE feel free to reopen it and explain why. | ||
--> | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**Version of Helm and Kubernetes**: | ||
|
||
Helm Version: | ||
|
||
```console | ||
$ helm version | ||
please put the output of it here | ||
``` | ||
|
||
Kubernetes Version: | ||
|
||
```console | ||
$ kubectl version | ||
please put the output of it here | ||
``` | ||
|
||
|
||
**Which version of the chart**: | ||
|
||
|
||
**What happened**: | ||
|
||
|
||
**What you expected to happen**: | ||
|
||
|
||
**How to reproduce it** (as minimally and precisely as possible): | ||
|
||
<~-- | ||
This could be something like: | ||
|
||
values.yaml (only put values which differ from the defaults) | ||
|
||
``` | ||
key: value | ||
``` | ||
|
||
``` | ||
helm install my-release {{ .GitHubOrg }}/name-of-chart --version version --values values.yaml | ||
``` | ||
|
||
--> | ||
|
||
|
||
**Anything else we need to know**: |
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,41 @@ | ||
<!-- | ||
Thank you for contributing! | ||
Before you submit this PR we'd like to make sure you are aware of our technical requirements and best practices: | ||
* https://github.com/{{ .GitHubOrg }}/helm-charts/blob/main/CONTRIBUTING.md#technical-requirements | ||
* https://helm.sh/docs/chart_best_practices/ | ||
For a quick overview across what we will look at reviewing your PR, please read our review guidelines: | ||
* https://github.com/helm/charts/blob/master/REVIEW_GUIDELINES.md | ||
Following our best practices right from the start will accelerate the review process and help get your PR merged quicker. | ||
When updates to your PR are requested, please add new commits and do not squash the history. | ||
This will make it easier to identify new changes. | ||
The PR will be squashed anyways when it is merged. | ||
Thanks. | ||
For fast feedback, please @-mention maintainers that are listed in the Chart.yaml file. | ||
Please make sure you test your changes before you push them. | ||
Once pushed, GitHub Actions will run across your changes and do some initial checks and linting. | ||
These checks run very quickly. | ||
Please check the results. | ||
We would like these checks to pass before we even continue reviewing your changes. | ||
--> | ||
|
||
# What this PR does / why we need it | ||
|
||
# Which issue this PR fixes | ||
|
||
*(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)* | ||
|
||
- fixes # | ||
|
||
# Special notes for your reviewer | ||
|
||
# Checklist | ||
<!-- [Place an '[x]' (no spaces) in all applicable fields. Please remove unrelated fields.] --> | ||
- [ ] [DCO](https://github.com/{{ .GitHubOrg }}/helm-charts/blob/main/CONTRIBUTING.md#sign-off-your-work) signed | ||
- [ ] Chart Version bumped |
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,30 @@ | ||
name: Lint and Test Charts | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
lint-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Fetch history | ||
run: git fetch --prune --unshallow | ||
|
||
- name: Run chart-testing (lint) | ||
id: lint | ||
uses: helm/[email protected] | ||
with: | ||
command: lint | ||
config: ct.yaml | ||
|
||
- name: Create kind cluster | ||
uses: helm/[email protected] | ||
if: steps.lint.outputs.changed == 'true' | ||
|
||
- name: Run chart-testing (install) | ||
uses: helm/[email protected] | ||
with: | ||
command: install | ||
config: ct.yaml |
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: Lint Code Base | ||
|
||
# Documentation: | ||
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
build: | ||
name: Lint Code Base | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v2 | ||
- name: Lint Code Base | ||
uses: github/super-linter@v3 | ||
env: | ||
VALIDATE_ALL_CODEBASE: false | ||
VALIDATE_YAML: false | ||
DEFAULT_BRANCH: main | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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,33 @@ | ||
name: Release Charts | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Fetch history | ||
run: git fetch --prune --unshallow | ||
|
||
- name: Configure Git | ||
run: | | ||
git config user.name "$GITHUB_ACTOR" | ||
git config user.email "[email protected]" | ||
# See https://github.com/helm/chart-releaser-action/issues/6 | ||
- name: Install Helm | ||
run: | | ||
curl -fsSLo get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | ||
chmod 700 get_helm.sh | ||
./get_helm.sh | ||
- name: Run chart-releaser | ||
uses: helm/[email protected] | ||
env: | ||
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |
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 @@ | ||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
paths: | ||
- 'README.md' | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: | | ||
cp -f README.md ${{ runner.temp }}/README.md | ||
- uses: actions/checkout@v2 | ||
with: | ||
ref: gh-pages | ||
- run: | | ||
cp -f ${{ runner.temp }}/README.md . | ||
git config user.name "$GITHUB_ACTOR" | ||
git config user.email "[email protected]" | ||
git add README.md | ||
git commit --signoff -m "Sync README from main" | ||
git push |
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 @@ | ||
# Community Code of Conduct | ||
|
||
This project 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,62 @@ | ||
# Contributing Guidelines | ||
|
||
Contributions are welcome via GitHub pull requests. This document outlines the process to help get your contribution accepted. | ||
|
||
## Sign off Your Work | ||
|
||
The Developer Certificate of Origin (DCO) is a lightweight way for contributors to certify that they wrote or otherwise have the right to submit the code they are contributing to the project. | ||
Here is the full text of the [DCO](http://developercertificate.org/). | ||
Contributors must sign-off that they adhere to these requirements by adding a `Signed-off-by` line to commit messages. | ||
|
||
```text | ||
This is my commit message | ||
Signed-off-by: Random J Developer <[email protected]> | ||
``` | ||
|
||
See `git help commit`: | ||
|
||
```text | ||
-s, --signoff | ||
Add Signed-off-by line by the committer at the end of the commit log | ||
message. The meaning of a signoff depends on the project, but it typically | ||
certifies that committer has the rights to submit this work under the same | ||
license and agrees to a Developer Certificate of Origin (see | ||
http://developercertificate.org/ for more information). | ||
``` | ||
|
||
## How to Contribute | ||
|
||
1. Fork this repository, develop, and test your changes | ||
1. Remember to sign off your commits as described above | ||
1. Submit a pull request | ||
|
||
***NOTE***: In order to make testing and merging of PRs easier, please submit changes to multiple charts in separate PRs. | ||
|
||
### Technical Requirements | ||
|
||
* Must pass [DCO check](#sign-off-your-work) | ||
* Must follow [Charts best practices](https://helm.sh/docs/topics/chart_best_practices/) | ||
* Must pass CI jobs for linting and installing changed charts with the [chart-testing](https://github.com/helm/chart-testing) tool | ||
* Any change to a chart requires a version bump following [semver](https://semver.org/) principles. See [Immutability](#immutability) and [Versioning](#versioning) below | ||
|
||
Once changes have been merged, the release job will automatically run to package and release changed charts. | ||
|
||
### Immutability | ||
|
||
Chart releases must be immutable. Any change to a chart warrants a chart version bump even if it is only changed to the documentation. | ||
|
||
### Versioning | ||
|
||
The chart `version` should follow [semver](https://semver.org/). | ||
|
||
Charts should start at `1.0.0`. Any breaking (backwards incompatible) changes to a chart should: | ||
|
||
1. Bump the MAJOR version | ||
2. In the README, under a section called "Upgrading", describe the manual steps necessary to upgrade to the new (specified) MAJOR version | ||
|
||
### Community Requirements | ||
|
||
This project is released with a [Contributor Covenant](https://www.contributor-covenant.org). | ||
By participating in this project you agree to abide by its terms. | ||
See [CODE_OF_CONDUCT.md](./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 |
---|---|---|
@@ -1,17 +1,28 @@ | ||
apiVersion: v1 | ||
apiVersion: v2 | ||
name: graylog | ||
home: https://www.graylog.org | ||
version: 1.6.11 | ||
appVersion: 3.1 | ||
version: 1.7.0 | ||
appVersion: 3.3.8 | ||
description: Graylog is the centralized log management solution built to open standards for capturing, storing, and enabling real-time analysis of terabytes of machine data. | ||
keywords: | ||
- graylog | ||
- logs | ||
- syslog | ||
- gelf | ||
- graylog | ||
- logs | ||
- syslog | ||
- gelf | ||
icon: https://global-uploads.webflow.com/5a218ef7897bf400019e2f16/5a218ef7897bf400019e2f60_logo-graylog.png | ||
sources: | ||
- https://www.graylog.org | ||
- https://github.com/KongZ/charts | ||
maintainers: | ||
- name: KongZ | ||
email: [email protected] | ||
- name: KongZ | ||
email: [email protected] | ||
dependencies: | ||
- name: elasticsearch | ||
version: 1.32.2 | ||
repository: https://charts.helm.sh/stable | ||
tags: | ||
- install-elasticsearch | ||
- name: mongodb | ||
version: 9.3.1 | ||
repository: https://charts.bitnami.com/bitnami | ||
tags: | ||
- install-mongodb |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.