Creating an object from a custom resource definition

Kubernetes custom resource definitions

In the Kubernetes API a resource is an endpoint that stores a collection of API objects of a certain kind. For example, the built-in pods resource contains a collection of Pod objects.

A custom resource is an object that extends the Kubernetes API or allows you to introduce your own API into a project or a cluster.

A custom resource definition (CRD) file defines your own object kinds and lets the API Server handle the entire lifecycle.

While only cluster admins can create CRDs, you can create an object from a CRD if you have read and write permission to it.

Creating custom objects from a CRD

Custom objects can contain custom fields that contain arbitrary JSON code.

Prerequisites

  • Create a CRD.

Procedure

  1. Create a YAML definition for the custom object. In the following example definition, the cronSpec and image custom fields are set in a custom object of kind CronTab. The kind comes from the spec.kind field of the custom resource definition object.

    Example YAML file for a custom object

    1. apiVersion: "stable.example.com/v1" (1)
    2. kind: CronTab (2)
    3. metadata:
    4. name: my-new-cron-object (3)
    5. finalizers: (4)
    6. - finalizer.stable.example.com
    7. spec: (5)
    8. cronSpec: "* * * * /5"
    9. image: my-awesome-cron-image
    1Specify the group name and API version (name/version) from the custom resource definition.
    2Specify the type in the custom resource definition.
    3Specify a name for the object.
    4Specify the finalizers for the object, if any. Finalizers allow controllers to implement conditions that must be completed before the object can be deleted.
    5Specify conditions specific to the type of object.
  2. After you create the object file, create the object:

    1. oc create -f <file-name>.yaml

Managing custom objects

After you create objects, you can manage your custom resources.

Prerequisites

  • Create a custom resource definition (CRD).

  • Create an object from a CRD.

Procedure

  1. To get information on a specific kind of custom resource, enter:

    1. oc get <kind>

    For example:

    1. oc get crontab
    2. NAME KIND
    3. my-new-cron-object CronTab.v1.stable.example.com

    Note that 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:

    1. oc get crontabs
    2. oc get crontab
    3. oc get ct
  2. You can also view the raw YAML data for a custom resource:

    1. oc get <kind> -o yaml
    1. oc get ct -o yaml
    2. apiVersion: v1
    3. items:
    4. - apiVersion: stable.example.com/v1
    5. kind: CronTab
    6. metadata:
    7. clusterName: ""
    8. creationTimestamp: 2017-05-31T12:56:35Z
    9. deletionGracePeriodSeconds: null
    10. deletionTimestamp: null
    11. name: my-new-cron-object
    12. namespace: default
    13. resourceVersion: "285"
    14. selfLink: /apis/stable.example.com/v1/namespaces/default/crontabs/my-new-cron-object
    15. uid: 9423255b-4600-11e7-af6a-28d2447dc82b
    16. spec:
    17. cronSpec: '* * * * /5' (1)
    18. image: my-awesome-cron-image (1)
    1Custom data from the YAML that you used to create the object displays.