-
Notifications
You must be signed in to change notification settings - Fork 22
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
12 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 |
---|---|---|
|
@@ -36,10 +36,22 @@ jobs: | |
if: steps.list-changed.outputs.changed == 'true' | ||
run: ct lint --chart-dirs . --target-branch ${{ github.event.repository.default_branch }} --validate-maintainers=false | ||
|
||
|
||
- name: Create kind cluster | ||
if: steps.list-changed.outputs.changed == 'true' | ||
uses: helm/[email protected] | ||
|
||
|
||
- name: Add MariaDB repo | ||
if: steps.list-changed.outputs.changed == 'true' | ||
run: helm repo add bitnami https://charts.bitnami.com/bitnam | ||
|
||
|
||
- name: Install MariaDB | ||
if: steps.list-changed.outputs.changed == 'true' | ||
run: helm install unguard-mariadb bitnami/mariadb --set primary.persistence.enabled=false --wait --namespace unguard --create-namespace | ||
|
||
|
||
- name: Run chart-testing (install) | ||
if: steps.list-changed.outputs.changed == 'true' | ||
run: ct install --chart-dirs . --target-branch ${{ github.event.repository.default_branch }} |