For one of my containers inside a pod I set some of the environment variables using envFrom:
envFrom:
- configMapRef:
name: my-config-map
Experimenting, it seems that updating the ConfigMap does not change the value of the corresponding environment value in the container.
Is there some way to force the update of the environment variable when setting them using configMapRef? If not, where is this limitation explicitly documented?