salmon-author-28515
06/28/2023, 9:50 PMmicroscopic-river-74022
06/28/2023, 9:50 PMservices
section of your module configuration, you can increase the timeout
value to a number that suits your needs. Here's how you can do it:
yaml
services:
- name: my-service
...
timeout: 600 # This sets the timeout to 600 seconds
Please note that this is a general suggestion. The exact cause of your issue might be different and could be related to other factors not covered in the provided extracts. If the problem persists, I recommend checking the Garden troubleshooting guide () or opening an issue in the Garden GitHub repository ().
----------------------
Note: you can ask me a follow up question by @ mentioning me again
:speech_balloon:
----------------------salmon-author-28515
06/28/2023, 9:57 PMmicroscopic-river-74022
06/28/2023, 9:57 PMgarden.yml
file or in multiple *.garden.yml
files. In your case, you can set the timeout
value in the services
section of your project.garden.yml
file.
Here's an example of how you can do it:
yaml
kind: Project
name: my-project
...
services:
- name: my-service
...
timeout: 600 # This sets the timeout to 600 seconds
Please note that the structure of your project.garden.yml
file might be different depending on your project's specific configuration. Make sure to adjust the timeout
value in the correct place according to your configuration.
If you're unsure about how to structure your Garden configuration, you can refer to the Garden configuration guide ().
----------------------
Note: you can ask me a follow up question by @ mentioning me again
:speech_balloon:
----------------------