tacker/releasenotes/notes/improve-function-for-container-update-0da4499cc0e55dcf.yaml
Shuwen Cai 8c00bf5157 Enhance Container Update Function
In the current implementation, when users invoke update operation of
ConfigMaps and Secrets, all Pods are restarted even if they don't use
those updated ConfigMaps and Secrets.

This patch filters out ['Pod', 'Deployment ', 'Replicaset',
'Daemonset'] using the updated ConfigMap/Secret on the original
functionality and updates these resources. No more restarting all
Pods.

Implements: blueprint enhancement-container-update
Change-Id: I2c058979a65fc80c4486bd1f7dfada26ea89d7fd
2022-09-06 09:30:34 +09:00

10 lines
328 B
YAML

---
features:
- |
In the current implementation, when users invoke update operation of
ConfigMaps and Secrets, all Pods are restarted even if they don't use
those updated ConfigMaps and Secrets.
Remove this limitation by filtering out resources that use
Configmaps/Secrets and restarting those resources.