-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fluentd-elasticsearch] fix source links (#2)
* fix source links Signed-off-by: André Bauer <[email protected]> * fix github action version Signed-off-by: André Bauer <[email protected]> * fix job dependencies Signed-off-by: André Bauer <[email protected]> * ci improvements Signed-off-by: André Bauer <[email protected]> * remove action dependencies Signed-off-by: André Bauer <[email protected]> * renamed files & update chart action version Signed-off-by: André Bauer <[email protected]> * use kind master actionersion Signed-off-by: André Bauer <[email protected]> * use single ci file Signed-off-by: André Bauer <[email protected]> * removed name Signed-off-by: André Bauer <[email protected]> * enable yaml linter Signed-off-by: André Bauer <[email protected]> * fix workflow Signed-off-by: André Bauer <[email protected]> * fix typo Signed-off-by: André Bauer <[email protected]> * remove if Signed-off-by: André Bauer <[email protected]> * update shellcheck container Signed-off-by: André Bauer <[email protected]> * removed name Signed-off-by: André Bauer <[email protected]> * removed blank line Signed-off-by: André Bauer <[email protected]> * use v1.1.0 Signed-off-by: André Bauer <[email protected]> * added branch to ct config Signed-off-by: André Bauer <[email protected]> * added path check Signed-off-by: André Bauer <[email protected]> * kind master Signed-off-by: André Bauer <[email protected]> * fix pr template Signed-off-by: André Bauer <[email protected]>
- Loading branch information
Showing
12 changed files
with
123 additions
and
112 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners#codeowners-syntax | ||
|
||
/charts/<name-of-chart> @maintainer | ||
/charts/fluentd-elasticsearch @monotek | ||
|
||
## changes to CODEOWNERS should be reviewed by repository admins | ||
/CODEOWNERS @helm-charts-admins |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
helm-extra-args: --timeout 1200s | ||
check-version-increment: true | ||
debug: true | ||
target-branch: main | ||
chart-repos: | ||
- kiwigrid=https://kiwigrid.github.io/ | ||
- minio=https://helm.min.io | ||
- kokuwa=https://kokuwaio.github.io/helm-charts |
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,102 @@ | ||
name: ci | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- 'charts/**/[cC]hart.yaml' | ||
|
||
jobs: | ||
lint-bash-scripts: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Lint Bash scripts | ||
uses: docker://koalaman/shellcheck-alpine:v0.7.1 | ||
with: | ||
args: .github/lint-scripts.sh | ||
|
||
super-linter: | ||
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: true | ||
DEFAULT_BRANCH: main | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
lint-chart: | ||
runs-on: ubuntu-latest | ||
needs: | ||
- lint-bash-scripts | ||
- super-linter | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Fetch history | ||
run: git fetch --prune --unshallow | ||
|
||
- name: Run chart-testing (lint) | ||
uses: helm/chart-testing-action@master | ||
with: | ||
command: lint | ||
config: .github/ct.yaml | ||
|
||
kubeval-chart: | ||
runs-on: ubuntu-latest | ||
needs: lint-chart | ||
strategy: | ||
matrix: | ||
k8s: | ||
- v1.16.4 | ||
- v1.17.4 | ||
- v1.18.1 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Fetch history | ||
run: git fetch --prune --unshallow | ||
|
||
- name: Run kubeval | ||
env: | ||
KUBERNETES_VERSION: ${{ matrix.k8s }} | ||
run: .github/kubeval.sh | ||
|
||
install-chart: | ||
runs-on: ubuntu-latest | ||
needs: | ||
- lint-chart | ||
- kubeval-chart | ||
strategy: | ||
matrix: | ||
k8s: | ||
- v1.16.15 | ||
- v1.17.11 | ||
- v1.18.6 | ||
- v1.19.1 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Fetch history | ||
run: git fetch --prune --unshallow | ||
|
||
- name: Create kind ${{ matrix.k8s }} cluster | ||
uses: helm/kind-action@master | ||
with: | ||
config: .github/kind-config.yaml | ||
node_image: kindest/node:${{ matrix.k8s }} | ||
|
||
- name: Run chart-testing (install) | ||
uses: helm/[email protected] | ||
with: | ||
command: install | ||
config: .github/ct.yaml |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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