Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 412 Bytes

oc.md

File metadata and controls

34 lines (23 loc) · 412 Bytes

oc, openshift

oc login <cluster-url> -u <username>
oc projects  # to list
oc project <name>  # to select

status

oc status

logs

oc logs <pod-name> -c <container-name> [-t,--tail=<n>] [-f,--follow]
oc logs <pod-name> --all-containers=true

# service logs
oc get services
oc logs svc/<service>

exec

# oc get pods
oc exec -it <pod-name> <command>