Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 998 Bytes

operator-sdk_add_crd.md

File metadata and controls

31 lines (19 loc) · 998 Bytes

operator-sdk add crd

Adds a Custom Resource Definition (CRD) and the Custom Resource (CR) files

Synopsis

The operator-sdk add crd command will create a Custom Resource Definition (CRD) and the Custom Resource (CR) files for the specified api-version and kind.

Generated CRD filename: /deploy/crds/crd.yaml Generated CR filename: /deploy/crds/_cr.yaml

<project-name>/deploy path must already exist
--api-version and --kind are required flags to generate the new operator application.
operator-sdk add crd [flags]

Options

      --api-version string   Kubernetes apiVersion and has a format of $GROUP_NAME/$VERSION (e.g app.example.com/v1alpha1)
  -h, --help                 help for crd
      --kind string          Kubernetes CustomResourceDefintion kind. (e.g AppService)

SEE ALSO