We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents aafb9a1 + 8862ee0 commit b570cc6Copy full SHA for b570cc6
2 files changed
deployment-configuration/skaffold-template.yaml
@@ -13,6 +13,8 @@ deploy:
13
flags:
14
upgrade:
15
- --install
16
+ install:
17
+ - --timeout=10m
18
releases:
19
- name: null
20
chartPath: deployment/helm
tools/deployment-cli-tools/tests/test_skaffold.py
@@ -104,6 +104,10 @@ def test_create_skaffold_configuration():
104
105
assert len(sk['test'][1]['custom']) == 2
106
107
+ flags = sk['deploy']['helm']['flags']
108
+ assert '--timeout=10m' in flags['install']
109
+ assert '--install' in flags['upgrade']
110
+
111
shutil.rmtree(OUT)
112
shutil.rmtree(BUILD_DIR)
113
0 commit comments