Hi, is there any recommended way of creating pulum...
# typescript
b
Hi, is there any recommended way of creating pulumi scheduled deployments? For example, I want a pulumi stack that every night its destroyed and recreated again.
m
I think you can do that by setting a Time To Live on a stack : https://www.pulumi.com/docs/pulumi-cloud/deployments/ttl/#setting-a-time-to-live-on-a-stack
v
if you're using the open source implementation, you could do this using your CICD tool. for example, you can run github actions on a cron
b
yes, or is it just a k8s cronjob (taking advantage of our k8s cluster), this is what I thought. Just wanted to hear some opinions/approaches for inspiration