-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
28 additions
and
23 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 |
---|---|---|
|
@@ -10,36 +10,41 @@ jobs: | |
name: helm-lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: helm-lint-dex | ||
uses: stefanprodan/[email protected] | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: alexellis/setup-arkade@v1 | ||
|
||
- uses: alexellis/arkade-get@master | ||
with: | ||
helmv3: 3.0.0 | ||
run: | | ||
helmv3 lint charts/dex | ||
kubectl: latest | ||
kustomize: latest | ||
kubeconform: latest | ||
kubeval: latest | ||
helm: latest | ||
jq: latest | ||
yq: latest | ||
|
||
- name: helm-lint-dex | ||
run: | | ||
helm lint charts/dex | ||
- name: helm-lint-dex-k8s-auth | ||
uses: stefanprodan/[email protected] | ||
with: | ||
helmv3: 3.0.0 | ||
command: | | ||
helmv3 lint charts/dex-k8s-authenticator | ||
run: | | ||
helmv3 lint charts/dex-k8s-authenticator | ||
- name: helm-template | ||
uses: stefanprodan/[email protected] | ||
with: | ||
helmv3: 3.0.0 | ||
command: | | ||
helmv3 template charts/dex --output-dir /github/workspace/rendered-charts/dex | ||
helmv3 template charts/dex-k8s-authenticator --output-dir /github/workspace/rendered-charts/dex-k8s-authenticator | ||
run: | | ||
helm template charts/dex --output-dir /github/workspace/rendered-charts/dex | ||
helm template charts/dex-k8s-authenticator --output-dir /github/workspace/rendered-charts/dex-k8s-authenticator | ||
- name: kubeval | ||
uses: stefanprodan/[email protected] | ||
with: | ||
helmv3: 3.0.0 | ||
command: | | ||
kubeval -d /github/workspace/rendered-charts --strict --ignore-missing-schemas | ||
run: | | ||
kubeval -d /github/workspace/rendered-charts --strict --ignore-missing-schemas | ||
e2e: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/checkout@v4 | ||
- name: setup-kind | ||
uses: engineerd/[email protected] | ||
with: | ||
|