Skip to content

Commit

Permalink
Merge pull request #765 from MetaCell/feature/CH-144
Browse files Browse the repository at this point in the history
CH-144 Add 10 minute timeout to skaffold template
  • Loading branch information
filippomc authored Sep 3, 2024
2 parents aafb9a1 + 8862ee0 commit b570cc6
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 b570cc6

Please sign in to comment.