We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
oc rsh <podname>
Pro: Easy if the pod is running. Con: It's going to kick you out the moment it dies.
oc debug dc/<deployment config name>
Before you do this, you may want to peek there are no other pods attaching to shared storage:
oc get pods
Or maybe scale down you dc so there aren't pods that keep trying to sneak in
oc scale dc <deployment config name> --replicas=0
oc debug <my pods name>