clever-policeman-58407
09/25/2024, 7:29 PMkubernetes-pod
run action fail after almost exactly 45 minutes.microscopic-river-74022
09/25/2024, 7:29 PMmicroscopic-river-74022
09/25/2024, 7:29 PMkubernetes-pod
Run actions, the default timeout is set to 600 seconds (or 10 minutes). If your action is taking longer than this, it will fail due to the timeout.
You can adjust this timeout setting in your configuration. Here's an example of how to set it:
yaml
kind: Run
name: my-run-action
type: kubernetes-pod
timeout: 2700 # This sets the timeout to 45 minutes
...
Please note that the timeout value is in seconds. So, for 45 minutes, you would set it to 2700 (45 * 60).
You can find more details about this in the Garden documentation ().
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------microscopic-river-74022
09/25/2024, 7:29 PM