The optional OpenShift CLI (oc) tool provides a subset of oc commands for {product-title} deployments. Using oc is convenient if you are familiar with {OCP} and Kubernetes.
Review the following sections to learn how to complete common tasks in {product-title} using the oc CLI.
Use the oc get pods command to view the pods for the current project.
|
Note
|
When you run |
$ oc get pods -o wideExample output
NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE
cakephp-ex-1-build 0/1 Completed 0 5m45s 10.131.0.10 ip-10-0-141-74.ec2.internal <none>
cakephp-ex-1-deploy 0/1 Completed 0 3m44s 10.129.2.9 ip-10-0-147-65.ec2.internal <none>
cakephp-ex-1-ktz97 1/1 Running 0 3m33s 10.128.2.11 ip-10-0-168-105.ec2.internal <none>Use the oc logs command to view logs for a particular pod.
$ oc logs cakephp-ex-1-deployExample output
--> Scaling cakephp-ex-1 to 1
--> SuccessUse the oc api-resources command to view the list of supported API resources
on the server.
$ oc api-resourcesExample output
NAME SHORTNAMES APIGROUP NAMESPACED KIND
bindings true Binding
componentstatuses cs false ComponentStatus
configmaps cm true ConfigMap
...