web-platform-tests / wpt.live

A live version of the web-platform-tests project
https://wpt.live/
15 stars 11 forks source link

Migrate cert-renewal process to cloud run job #79

Closed jcscottiii closed 11 months ago

jcscottiii commented 11 months ago

Note: These changes have already been deployed to fix the cert that was going to expire next month.

Previously, the cert-renewal process was a long standing instance that ran the script once and slept. The problem arises that this sleep eventually breaks and the instance never recovers. This migrates the job to be a cloud run job that runs the script and that is it. The sleep is now handled by a cron schedule. This ensures the instance is always fresh.

Also upgrade terraform to 1.6.2

Fixes #57 Fixes #77