feat(chart): add kubernetes helm chart

This commit is contained in:
2022-11-14 17:59:57 +00:00
parent 99567edfc4
commit 4e36d51dc1
13 changed files with 424 additions and 3 deletions

View File

@@ -21,6 +21,18 @@ 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: [build]