Is there an upper limit on Run Actions? I'm seeing...
# 🤖|ask-kapa
c
@microscopic-river-74022 Is there an upper limit on Run Actions? I'm seeing my
kubernetes-pod
run action fail after almost exactly 45 minutes.
m
Please stand by @clever-policeman-58407 as I search the knowledge base. I normally take about 20 seconds or so. :wave:
---------------------- Yes, there is a timeout setting for Run actions in Garden. For
kubernetes-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:
Copy code
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: ----------------------
message has been deleted
2 Views