fix: upgrade n8n version & add some default configs (#8)

* try to fix gh action

* fix(ci): fix test pods

* fix: add env config for logs and healthcheck

* fix(deps): Upgrade n8n version

Co-authored-by: a5r0n <[email protected]>
This commit is contained in:
a5r0n
2022-11-18 14:44:54 +02:00
committed by GitHub
co-authored by a5r0n
parent 7641458d08
commit 13cdf5e846
6 changed files with 68 additions and 23 deletions
+8 -4
View File
@@ -14,7 +14,7 @@ jobs:
- name: Set up Helm
uses: azure/setup-helm@v1
with:
version: v3.4.0
version: v3.8.1
- uses: actions/setup-python@v2
with:
@@ -23,20 +23,24 @@ jobs:
- name: Set up chart-testing
uses: helm/[email protected]
- name: Add helm repos
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami
- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed)
changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }} --chart-dirs .)
if [[ -n "$changed" ]]; then
echo "::set-output name=changed::true"
fi
- name: Run chart-testing (lint)
run: ct lint
run: ct lint --target-branch ${{ github.event.repository.default_branch }} --chart-dirs . --validate-maintainers=false
- name: Create kind cluster
uses: helm/[email protected]
if: steps.list-changed.outputs.changed == 'true'
- name: Run chart-testing (install)
run: ct install
run: ct install --target-branch ${{ github.event.repository.default_branch }} --chart-dirs .