// Useful paired with modules/crd-creating-custom-resources-from-file.adoc // // Module included in the following assemblies: // // * operators/understanding/crds/crd-managing-resources-from-crds.adoc // * operators/understanding/crds/extending-api-with-crds.adoc :_mod-docs-content-type: PROCEDURE [id="crd-inspecting-custom-resources_{context}"] = Inspecting custom resources You can inspect custom resource (CR) objects that exist in your cluster using the CLI. .Prerequisites * A CR object exists in a namespace to which you have access. .Procedure . To get information on a specific kind of a CR, run: + [source,terminal] ---- $ oc get ---- + For example: + [source,terminal] ---- $ oc get crontab ---- + .Example output [source,terminal] ---- NAME KIND my-new-cron-object CronTab.v1.stable.example.com ---- + Resource names are not case-sensitive, and you can use either the singular or plural forms defined in the CRD, as well as any short name. For example: + [source,terminal] ---- $ oc get crontabs ---- + [source,terminal] ---- $ oc get crontab ---- + [source,terminal] ---- $ oc get ct ---- . You can also view the raw YAML data for a CR: + [source,terminal] ---- $ oc get -o yaml ---- + For example: + [source,terminal] ---- $ oc get ct -o yaml ---- + .Example output [source,terminal] ---- apiVersion: v1 items: - apiVersion: stable.example.com/v1 kind: CronTab metadata: clusterName: "" creationTimestamp: 2017-05-31T12:56:35Z deletionGracePeriodSeconds: null deletionTimestamp: null name: my-new-cron-object namespace: default resourceVersion: "285" selfLink: /apis/stable.example.com/v1/namespaces/default/crontabs/my-new-cron-object uid: 9423255b-4600-11e7-af6a-28d2447dc82b spec: cronSpec: '* * * * /5' <1> image: my-awesome-cron-image <1> ---- <1> Custom data from the YAML that you used to create the object displays.