tilt-dev / tilt-extensions

Extensions for Tilt
https://tilt.dev/
Apache License 2.0
205 stars 165 forks source link

helm_resource timeout #466

Open AlmogBaku opened 1 year ago

AlmogBaku commented 1 year ago

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.

AndriiP-AIT commented 2 months 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.

AndriiP-AIT commented 2 months ago

This is expected to be set via flags:

helm_resource(
...
    flags=[
        '--timeout', '10m',
    ]
...
)