Hello there, we're deploying a pulumi Stack resource in our cluster, using a flux Flux source connected to GitHub, basically following what is instructed in this documentation:
https://www.pulumi.com/docs/iac/using-pulumi/continuous-delivery/pulumi-kubernetes-operator/#using-a-flux-source
Our issue is with the way the resources are refreshed. Whenever the GitHub repository is updated, we can see Flux GitRepository resource getting it and building the new artifact, following the configured interval. Download said artifact with curl and decompressing the archive shows evidence the update was correctly reflected.
But then, the pulumi Stack do not get refreshed before long minutes. in my last try, here was the cinematic:
⢠git push at 4:32pm
⢠GitRepository resource updated at 4:34pm (1 min refresh interval on resource)
⢠Stack processed at 5:18pm (processing takes around 4/5 mins)
The question is, how can we configure (here, shorten) the delay between the GitResource being refresh and the artifact produced, and the Stack being processed accordingly?