Hi there, I got a `DaemonSet` with a `requiredDur...
# general
n
Hi there, I got a
DaemonSet
with a
requiredDuringSchedulingIgnoredDuringExecution
podAffinity
configured which leads the
DaemonSet
to stay
In Progress
due to some
Nodes
that doesn't match the affinity requirements. The Issue now is that pulumi tries to wait for that
DaemonSet
until it timeouts. Is there a way to tell pulumi to not wait for the
DaemonSet
to be completed?
m
You can likely solve this with a
<http://pulumi.com/skipAwait|pulumi.com/skipAwait>: "true"
annotation, see this blog post: https://www.pulumi.com/blog/improving-kubernetes-management-with-pulumis-await-logic/ This section notes that the behavior for DaemonSets was changed in September 2024, in case you need a more recent starting point to dig into the details: https://www.pulumi.com/blog/improved-kubernetes-await-logic/#additional-improvements
n
That works perfectly 😄 thank you