Skip to content

Commit

Permalink
CH-144 Add 10 minute timeout to skaffold template
Browse files Browse the repository at this point in the history
  • Loading branch information
condar-metacell committed Sep 3, 2024
1 parent aafb9a1 commit 8862ee0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions deployment-configuration/skaffold-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ deploy:
flags:
upgrade:
- --install
install:
- --timeout=10m
releases:
- name: null
chartPath: deployment/helm
Expand Down
4 changes: 4 additions & 0 deletions tools/deployment-cli-tools/tests/test_skaffold.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,10 @@ def test_create_skaffold_configuration():

assert len(sk['test'][1]['custom']) == 2

flags = sk['deploy']['helm']['flags']
assert '--timeout=10m' in flags['install']
assert '--install' in flags['upgrade']

shutil.rmtree(OUT)
shutil.rmtree(BUILD_DIR)

Expand Down

0 comments on commit 8862ee0

Please sign in to comment.