feat(helm): add kubernetes helm chart

This commit is contained in:
2022-11-14 21:49:32 +00:00
parent c10da646e0
commit 51acb32c8a
12 changed files with 422 additions and 1 deletions

View File

@@ -20,9 +20,21 @@ jobs:
curl --silent --retry 10 --retry-delay 1 --retry-connrefused \
http://localhost:8080/
helm-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: azure/setup-helm@v3
with:
token: "${{ secrets.GITHUB_TOKEN }}"
- name: Lint chart
run: helm lint chart
- name: Template chart
run: helm template chart
release-please:
runs-on: ubuntu-latest
needs: [test]
needs: [test, helm-lint]
if: github.ref == 'refs/heads/main'
steps:
- uses: google-github-actions/release-please-action@v3