I’m not able to configure a trigger from the project.yml
file. It doesn’t throw any error when deploying, it just doesn’t add the trigger. I then need to do it manually from the browser.
Heres is my project.yml
file
packages:
- name: interpolate-data
functions:
- name: main
environment:
USER: '${USER}'
PASSWORD: '${PASSWORD}'
limits:
timeout: 800000
memory: 256
runtime: go:1.17
triggers:
- name: every-hour
sourceType: scheduler
sourceDetails:
cron: '0 * * * *'
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Sign up for Infrastructure as a Newsletter.
Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
I managed to figure this out immediately after posting my reply. You need to include
withBody:
in your request undercron:
, even if you leave it blank. This prevented errors for me.Same issue here. Deploying with Python 3.11 but the triggers don’t show in the Control Panel and don’t run at the specified time. I have to set these manually in the Control Panel instead.
Same here. Would love a reply from DO on this topic.