Generating a ClusterServiceVersion

This document describes how to manage the following lifecycle for your Operator using the SDK’s operator-sdk generate csv command:

  • Generate your first release - encapsulate the metadata needed to install your Operator with the Operator Lifecycle Manager and configure the permissions it needs from the generated SDK files.
  • Update your Operator - apply any updates to Operator manifests made during development.
  • Upgrade your Operator - carry over any customizations you have made and ensure a rolling update to the next version of your Operator.

Note: operator-sdk generate csv only officially supports Go Operators. Ansible and Helm Operators will be fully supported in the future. However, generate csv may work with Ansible and Helm Operators if their project structure aligns with that described below.

Configuration

Inputs

The ClusterServiceVersion (CSV) generator requires certain input manifests to construct a CSV manifest. Each of these inputs are read every time operator-sdk generate csv is run are used to overwrite data in corresponding CSV fields (with one exception described below).

  1. Path to the Operator manifests root directory. By default generate csv extracts manifests from files in deploy/ for the following kinds and adds them to the CSV. Use the --deploy-dir flag to change this path.
    • Roles: deploy/role.yaml
    • ClusterRoles: deploy/cluster_role.yaml
    • Deployments: deploy/operator.yaml
  2. Path to the API types root directory. The CSV generator also parses the CSV annotations from the API type definitions to populate certain CSV fields. By default the API types directory is pkg/apis/. Use the --apis-dir flag to change this path. The CSV generator expects either of the following layouyts for the API types directory.
    • Mulitple groups: <API-root-dir>/<group>/<version>/
    • Single groups: <API-root-dir>/<version>/
  3. Path to a directory containing CustomResourceDefinition’s (CRD’s) and Custom Resource examples (CR’s). Use the --crd-dir flag to change this path.
    • Custom Resources: deploy/crds/<full group>_<version>_<kind>_cr.yaml
    • CustomResourceDefinitions: deploy/crds/<full group>_<resource>_crd.yaml

Output

By default generate csv will create a CSV and copy CRDs in the bundle manifests format:

  1. deploy/
  2. └── olm-catalog
  3. └── <operator-name>
  4. └── manifests
  5. ├── cache.example.com_memcacheds_crd.yaml
  6. └── <operator-name>.clusterserviceversion.yaml

Setting --make-manifests=false will create a CSV and package manifest in the package manifests format:

  1. deploy/
  2. └── olm-catalog
  3. └── <operator-name>
  4. ├── 0.0.1
  5. └── <operator-name>.v0.0.1.clusterserviceversion.yaml
  6. └── <operator-name>.package.yaml

Set the --ouput-dir flag to change where the CSV is generated.

Note: generate csv will populate many but not all fields in your CSV automatically. Subsequent calls to generate csv will warn you of missing required fields. See the list of fields below for more information.

Bundle format (default)

CSV’s are versioned by their metadata.name and spec.version fields and stored in a bundle manifests directory. To create a CSV for version 0.0.1, run:

  1. $ operator-sdk generate csv --csv-version 0.0.1

A CSV should now exist at deploy/olm-catalog/<operator-name>/manifests/<operator-name>.clusterserviceversion.yaml with <operator-name>.v0.0.1 and version 0.0.1. This command will also copy all CustomResourceDefinition manifests from deploy/crds or the value passed to --crd-dir to that CSV’s directory. Note that a valid semantic version is required.

Package manifests format

Setting --make-manifests=false will create a CSV in a versioned directory deploy/olm-catalog/<operator-name>/0.0.1/<operator-name>.v0.0.1.clusterserviceversion.yaml:

  1. $ operator-sdk generate csv --make-manifests=false --csv-version 0.0.1

Setting --update-crds=true directs the generator to update bundled CRD manifests.

Updating your CSV

Let’s say you added a new CRD deploy/crds/group.domain.com_resource_crd.yaml to your Operator project, and added a port to your Deployment manifest operator.yaml. If using a bundle format, the current version of your CSV can be updated by running:

  1. $ operator-sdk generate csv

If using a package manifests format, run:

  1. $ operator-sdk generate csv --make-manifests=false --csv-version <existing-version>

Running the command for either format will append your new CRD to spec.customresourcedefinitions.owned, replace the old data at spec.install.spec.deployments with your updated Deployment, and update your existing CSV manifest. The SDK will not overwrite user-defined fields like spec.maintainers.

Upgrading your CSV

Lets say you’re upgrading your Operator version. If using a bundle format, a new version of your CSV can be created by running:

  1. $ operator-sdk generate csv --csv-version <new-version>

If using a package manifests format, run:

  1. $ operator-sdk generate csv --make-manifests=false --csv-version <new-version> --from-version <old-version>

Running the command for either format will persist user-defined fields, updates spec.version, and populates spec.replaces with the old CSV versions’ name.

CSV fields

Below are two lists of fields: the first is a list of all fields the SDK and OLM expect in a CSV, and the second are optional.

Several fields require user input (labeled user) or a CSV annotation (labeled annotation). This list may change as the SDK becomes better at generating CSV’s.

Required:

  • metadata.name: a unique name for this CSV. Operator version should be included in the name to ensure uniqueness, ex. app-operator.v0.1.1.
  • spec.description (user) : a thorough description of the Operator’s functionality.
  • spec.displayName (user) : a name to display for the Operator in Operator Hub.
  • spec.keywords (user) : a list of keywords describing the Operator.
  • spec.maintainers (user) : a list of human or organizational entities maintaining the Operator, with a name and email.
  • spec.provider (user) : the Operator provider, with a name; usually an organization.
  • spec.labels (user) : a list of key:value pairs to be used by Operator internals.
  • spec.version: semantic version of the Operator, ex. 0.1.1.
  • spec.installModes: what mode of installation namespacing OLM should use. Currently all but MultiNamespace are supported by SDK Operators.
  • spec.customresourcedefinitions: any CRDs the Operator uses. Certain fields in elements of owned will be filled by the SDK.
    • owned: all CRDs the Operator deploys itself from it’s bundle.
      • name: CRD’s metadata.name.
      • kind: CRD’s metadata.spec.names.kind.
      • version: CRD’s metadata.spec.version.
      • description (annotation) : description of the CRD.
      • displayName (annotation) : display name of the CRD.
      • resources (annotation) : any Kubernetes resources used by the CRD, ex. Pod‘s and ConfigMap‘s.
      • specDescriptors (annotation) : UI hints for inputs and outputs of the Operator’s spec.
      • statusDescriptors (annotation) : UI hints for inputs and outputs of the Operator’s status.
      • actionDescriptors (user) : UI hints for an Operator’s in-cluster actions.
    • required (user) : all CRDs the Operator expects to be present in-cluster, if any. All required element fields must be populated manually.

Optional:

  • metadata.annotations.alm-examples: CR examples, in JSON string literal format, for your CRD’s. Ideally one per CRD.
  • metadata.annotations.capabilities: level of Operator capability. See the Operator maturity model for a list of valid values.
  • spec.replaces: the name of the CSV being replaced by this CSV.
  • spec.links (user) : a list of URL’s to websites, documentation, etc. pertaining to the Operator or application being managed, each with a name and url.
  • spec.selector (user) : selectors by which the Operator can pair resources in a cluster.
  • spec.icon (user) : a base64-encoded icon unique to the Operator, set in a base64data field with a mediatype.
  • spec.maturity: the Operator’s maturity, ex. alpha.

Further Reading

  • Information on what goes in your CSV and CSV semantics.
  • The original design doc, which contains a thorough description how CSV’s are generated by the SDK.

Last modified January 1, 0001