Open AlmogBaku opened 1 year ago
👍 for addressing this issue. It would be helpful to add the ability to specify a --timeout
option for helm_resource
in the helm-apply-helper.py
script found here: https://github.com/tilt-dev/tilt-extensions/blob/master/helm_resource/helm-apply-helper.py. This is important because not all services can start within the default 5-minute timeframe.
This is expected to be set via flags:
helm_resource(
...
flags=[
'--timeout', '10m',
]
...
)
When installing multiple helms, Tilt fails with a timeout error(due to the waiting for Helm to finish the process).
This requires me to trigger an update manually.