apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: # name must match the spec fields below, and be in the form: <plural>.<group> name: fancydb.db.example.com spec: # group name to use for REST API: /apis/<group>/<version> group: db.example.com # list of versions supported by this CustomResourceDefinition versions: - name: v1 # either Namespaced or Cluster scope: Namespaced names: # plural name to be used in the URL: /apis/<group>/<version>/<plural> plural: fancydbs # singular name to be used as an alias on the CLI and for display singular: fancydb # kind is normally the CamelCased singular type. Your resource manifests use this. kind: FancyDB # shortNames allow shorter string to match your resource on the CLI shortNames: - fb
Comments