This message was deleted.
# general
s
This message was deleted.
s
This question isn't specific to Pulumi; it can apply to using native Kubernetes tools as well (i.e., using
kubectl edit
to edit a Deployment to scale the replicas up, then someone re-applying the original manifest and undoing the change). The key is exactly as you suggested: you have to control how/where changes to the environment are made so there is a single "source of truth" for the desired configuration.
g
You can also use
pulumi refresh
to reconcile Pulumi’s state with the state of the world if something changes out of band like that.
a
@gorgeous-egg-16927 Interesting, will check
refresh
out, thanks