test: fix tests
This commit is contained in:
parent
195ef337bb
commit
0b5034b40f
9 changed files with 19 additions and 12 deletions
|
@ -121,10 +121,10 @@ jobs:
|
|||
- name: install chart
|
||||
uses: https://github.com/nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e # v3.0.0
|
||||
with:
|
||||
timeout_minutes: 15
|
||||
timeout_minutes: 30
|
||||
max_attempts: 3
|
||||
retry_on: error
|
||||
retry_wait_seconds: 60
|
||||
retry_wait_seconds: 120
|
||||
polling_interval_seconds: 5
|
||||
command: ct install --config tools/ct.yml --charts .
|
||||
|
||||
|
|
10
ci/default-values.yml
Normal file
10
ci/default-values.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
# default values with some modifications
|
||||
postgresql-ha:
|
||||
# for better ci experience
|
||||
postgresql:
|
||||
startupProbe:
|
||||
enabled: true
|
||||
redis:
|
||||
redis:
|
||||
startupProbe:
|
||||
enabled: true
|
|
@ -1 +0,0 @@
|
|||
# default values
|
|
@ -4,8 +4,6 @@ image:
|
|||
|
||||
redis-cluster:
|
||||
enabled: false
|
||||
postgresql:
|
||||
enabled: false
|
||||
postgresql-ha:
|
||||
enabled: false
|
||||
|
||||
|
|
|
@ -2,6 +2,10 @@ redis-cluster:
|
|||
enabled: false
|
||||
postgresql:
|
||||
enabled: true
|
||||
# for better ci experience
|
||||
postgresql:
|
||||
startupProbe:
|
||||
enabled: true
|
||||
postgresql-ha:
|
||||
enabled: false
|
||||
|
||||
|
|
|
@ -5,8 +5,6 @@ image:
|
|||
|
||||
redis-cluster:
|
||||
enabled: false
|
||||
postgresql:
|
||||
enabled: false
|
||||
postgresql-ha:
|
||||
enabled: false
|
||||
|
|
@ -5,8 +5,6 @@ image:
|
|||
|
||||
redis-cluster:
|
||||
enabled: false
|
||||
postgresql:
|
||||
enabled: false
|
||||
postgresql-ha:
|
||||
enabled: false
|
||||
|
|
@ -5,8 +5,6 @@ image:
|
|||
|
||||
redis-cluster:
|
||||
enabled: false
|
||||
postgresql:
|
||||
enabled: false
|
||||
postgresql-ha:
|
||||
enabled: false
|
||||
|
|
@ -1,6 +1,8 @@
|
|||
helm-extra-args: --timeout 3m
|
||||
# https://github.com/helm/chart-testing/blob/main/doc/ct_install.md
|
||||
helm-extra-args: --timeout 5m
|
||||
check-version-increment: false
|
||||
debug: true
|
||||
target-branch: main
|
||||
lint-conf: .yamllint
|
||||
validate-maintainers: false # does not work with gitea
|
||||
github-groups: true
|
||||
|
|
Loading…
Reference in a new issue