Hi,
I am working on a TPR controller that will add a side card container to a pod. From what I can tell so far is that a side car container can't be added to an existing pod. I get an error message like below:
pods "two-containers" was not valid:
# * spec.containers: Forbidden: pod updates may not add or remove containers
#
So, my TPR controller basically have to add the side card container to the RC or Deployment PodTemplate and then restart the pods. Is there a way to do with without requiring restarting running pods? This seems possible from pure Linux namespace perspective.
Thanks,
-Tamal