Oc rsh: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 15: Line 15:
To connect to a specific container (and not the default):
To connect to a specific container (and not the default):


  oc rsh -n <''namespace''> <''pod-name''> -c <''container-name''>
  oc rsh -n <''namespace''> -c <''container-name''> <''pod-name''>

Revision as of 19:43, 12 October 2017

External

Internal

Overview

Open a remote shell session to a container running in a pod. If more than one containers run in the pod, the default will be used.

oc rsh -n <namespace> <pod-name>

To connect to a specific container (and not the default):

oc rsh -n <namespace> -c <container-name> <pod-name>