I have a redash server deployed on an on premise openshift cluster, with about 20 pods.
I want to install new python libraries on the server and I'm able to ssh to one of the pods using oc rsh
and run pip install x
.
The problem is that I have a lot of pods and don't want to ssh to each pods when I need a new library. I also don't want to change the image and have to redeploy my server every time. Is there a way to run a command on all pods at the same time?