Point (2) in particular implies that you have to u...
# general
c
Point (2) in particular implies that you have to use something higher-level to orchestrate your rollouts. In order to safely rollout a new configuration, you have to: 1. Create a new
ConfigMap
with new data in it, update `Deployment`s to reference it. 2. Wait for rollout of those `Deployment`s to complete, and 3. Finally, after it succeeds, delete the old
ConfigMap
. Why ask users to re-implement this for every new app? Why not just handle it for them?