This message was deleted.
# general
s
This message was deleted.
c
I don’t think you can update a ReplicaSet can you? From what it looks like, you are updating it rather than creating a new one.
v1/deployment is probably what you want to be doing rather than ReplicaSet directly.
h
Ah so a deployment would update with the latest image, not ReplicaSet?
c
A Deployment is a higher level resource. It creates a new ReplicaSet that it manages, and switches from the old one to the new one once the new one is running.
h
Ah gotcha