Openshift: Difference between revisions

From Halfface
Jump to navigation Jump to search
Line 11: Line 11:
=To get (almost) all object with a specific label from the current project, execute:=
=To get (almost) all object with a specific label from the current project, execute:=
  oc get all -l '<label_name>=<label_value>'
  oc get all -l '<label_name>=<label_value>'
=logs=
oc logs -f router-default-6b76b87c6-4lc4b logs > /tmp/tmp

Revision as of 14:59, 15 April 2021

List projects

oc projects

select project

oc project $project

list pods

oc get pods

connect to pod

oc get pods

describe pods

oc describe pods

To get (almost) all object with a specific label from the current project, execute:

oc get all -l '<label_name>=<label_value>'

logs

oc logs -f router-default-6b76b87c6-4lc4b logs > /tmp/tmp