I’m seeing some `read` actions on recoded resource...
# general
b
I’m seeing some
read
actions on recoded resources, any idea what those are?
i
Those come from calls to
.get
- that’s how the Pulumi engine implements that feature. It’s the “R” in “CRUD” from a provider standpoint; all it does is ask your cloud provider for a resource that already exists.
b
It happened with a resource that should be created instead, which is why I was confused. Turns out it was because I was passing a
statefulSet
object to
pulumiOps
instead of passing
{ parent: statefulSet }