Openshift: Difference between revisions
Jump to navigation
Jump to search
(→edit) |
|||
Line 51: | Line 51: | ||
Watch changes taking place. | Watch changes taking place. | ||
watch -n5 oc get all | watch -n5 oc get all | ||
=crictl= | |||
==List running containers== | |||
crictl ps | |||
==List all pods== | |||
crictl pods | |||
==List all images== | |||
crictl images |
Revision as of 14:11, 21 April 2021
What does it mean?
csi Container Storage Interface cri Container Runtime Interface
List projects
oc projects
select project
oc project $project
list pods
oc get pods oc get pods --all-namespaces oc get pods -o wide
wide will give you on which node pod is running.
oc get pods -o wide --all-namespaces
get shell on node
oc debug node/infra-2.ocpdev.lkl.ltkalmar.se
get nodes
oc get nodes
connect to pod
oc rsh $pod bash
execute command in pod
oc exec pod/router-default-545ffb97db-4h9rx -- $command
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
get config from pod in yaml format
oc get pods router-default-545ffb97db-kgsdb -o yaml
get deployments
oc get deployment
set environment variable in pod
oc set env $pod_template
list environment variables
oc set env pod/router-default-545ffb97db-lj2t5 --list
list templates
oc get templates -n openshift
Custom resource definitions.(crd)
oc get crd
sort
CREATED AT
oc get crd --sort-by=.metadata.creationTimestamp
edit
oc edit deployment.apps/router-default
Watch changes taking place.
watch -n5 oc get all
crictl
List running containers
crictl ps
List all pods
crictl pods
List all images
crictl images