Hey y'all, I am creating a bunch of resources thro...
# general
b
Hey y'all, I am creating a bunch of resources through a kubernetes helm chart with pulumi but for some reason it created them the first time but on subsequent runs it wants to create the resources again (these come from the cert manager and rancher helm charts). Is there a way to mark them as created? I tried refresh but it still wants to create them on subsequent
pulumi up
runs
These are the resources. I confirmed they already exists.
s
Do the resources show in
pulumi stack
immediately after you run
pulumi up
?
b
I just ran it, yes they show there
well, I seem to have tracked this to only service accounts
seems k3s is not giving pulumi info about the creation so it takes them as missing
I have to run refresh
Copy code
* resource XXX, but the Kubernetes API server reported that it failed to fully initialize or become live: Timeout occurred polling for 'XXX'
s
Can you file an issue for this in pulumi-kubernetes with a minimal program to reproduce? This sounds like a bug, or at least some missing documentation.
f
Hey @brief-jelly-98203, did you resolve this issue by any chance?