OLM Integration Bundle Tutorial
This document succinctly walks through getting an Operator OLM-ready with bundles, and glosses over explanations of certain steps for brevity. The following documents contain more detail on these steps:
- All operator-framework manifest commands supported by the SDK: .
- Generating operator-framework manifests: generation overview.
If you are working with package manifests, see the once you have completed the Setup section below.
Important: this guide assumes your project was scaffolded with . These features are unavailable to projects of version 2
or less; this information can be found by inspecting your PROJECT
file’s version
value.
Let’s first walk through creating an Operator for memcached
, a distributed key-value store.
Follow one of the user guides to develop the memcached-operator in either Go, , or Helm, depending on which Operator type you are interested in. This guide assumes memcached-operator is on version 0.0.1
, which is set in the Makefile
variable VERSION
.
Ensure OLM is enabled on your cluster before following this guide. has several subcommands that can install, uninstall, and check the status of particular OLM versions in a cluster.
Note: Certain cluster types may already have OLM enabled, but under a non-default ("olm"
) namespace, which can be configured by setting --olm-namespace=[non-default-olm-namespace]
for operator-sdk olm status|uninstall
subcommands.
You can check if OLM is already installed by running the following command, which will detect the installed OLM version automatically (0.15.1 in this example):
All resources listed should have status Installed
.
Note: The operator-sdk olm status
command is geared to detect the status of OLM that was installed by installation methods like operator-sdk olm install
or by applying OLM manifests directly on the cluster. This command retrieves the resources that were compiled into SDK at the time of installation from the OLM . However, if OLM was installed in a cluster in a custom fashion (such as in OpenShift clusters), it is possible that some resources will show a Not Found
status when the operator-sdk olm status
command is issued.
oc get <resource-name> -n <resource-namespace>
If OLM is not already installed, go ahead and install the latest version:
$ operator-sdk olm install
INFO[0000] Fetching CRDs for version "latest"
INFO[0001] Fetching resources for version "latest"
INFO[0007] Creating CRDs and resources
INFO[0007] Creating CustomResourceDefinition "clusterserviceversions.operators.coreos.com"
INFO[0007] Creating CustomResourceDefinition "installplans.operators.coreos.com"
INFO[0007] Creating CustomResourceDefinition "subscriptions.operators.coreos.com"
...
NAME NAMESPACE KIND STATUS
clusterserviceversions.operators.coreos.com CustomResourceDefinition Installed
installplans.operators.coreos.com CustomResourceDefinition Installed
subscriptions.operators.coreos.com CustomResourceDefinition Installed
catalogsources.operators.coreos.com CustomResourceDefinition Installed
...
Note: By default, olm status
and olm uninstall
auto-detect the OLM version installed in your cluster. This can fail if the installation is broken in some way, so the version of OLM can be overridden using the --version
flag provided with these commands.
If working with package manifests, see the package manifests tutorial.
We will now create bundle manifests by running in the root of the memcached-operator project.
$ make bundle
operator-sdk generate kustomize manifests -q
kustomize build config/manifests | operator-sdk generate bundle -q --overwrite --version 0.0.1
INFO[0000] Building annotations.yaml
INFO[0000] Writing annotations.yaml in /home/user/go/src/github.com/test-org/memcached-operator/bundle/metadata
INFO[0000] Building Dockerfile
INFO[0000] Writing bundle.Dockerfile in /home/user/go/src/github.com/test-org/memcached-operator
operator-sdk bundle validate ./bundle
INFO[0000] Found annotations file bundle-dir=bundle container-tool=docker
INFO[0000] Could not find optional dependencies file bundle-dir=bundle container-tool=docker
INFO[0000] All validation tests have completed successfully
The above command will have created the following bundle artifacts: a manifests directory (bundle/manifests
) containing a CSV and all CRDs from config/crds
, directory (bundle/metadata
), and bundle.Dockerfile have been created in the Operator project. These files have been statically validated by operator-sdk bundle validate
to ensure the on-disk bundle representation is correct.
At this point in development we’ve generated all files necessary to build the memcached-operator bundle. Now we’re ready to test and deploy the Operator with OLM.
Note: If testing a bundle whose image will be hosted in a registry that is private and/or has a custom CA, these must be complete.
Before proceeding, make sure you’ve Installed OLM onto your cluster.
First, we need to build our bundle. To build a memcached-operator bundle, run:
$ make bundle-build bundle-push BUNDLE_IMG=<some-registry>/memcached-operator-bundle:v0.0.1
Now that the bundle image is present in a registry, can create a pod to serve that bundle to OLM via a Subscription, along with other OLM objects, ephemerally.
Let’s upgrade the previously deployed memcached-operator bundle from version 0.0.1
to 0.0.2
.
$ operator-sdk run bundle-upgrade <some-registry>/memcached-operator-bundle:v0.0.2
INFO[0002] Found existing subscription with name memcached-operator-bundle-0-0-1-sub and namespace default
INFO[0002] Found existing catalog source with name memcached-operator-catalog and namespace default
INFO[0007] Successfully created registry pod: <some-registry>-memcached-operator-bundle-0-0-2
INFO[0007] Updated catalog source memcached-operator-catalog with address and annotations
INFO[0008] Deleted previous registry pod with name "<some-registry>-memcached-operator-bundle-0-0-1"
INFO[0050] Approved InstallPlan install-c8fkh for the Subscription: memcached-operator-bundle-0-0-1-sub
INFO[0050] Waiting for ClusterServiceVersion "default/memcached-operator.v0.0.2" to reach 'Succeeded' phase
INFO[0050] Waiting for ClusterServiceVersion "default/memcached-operator.v0.0.2" to appear
INFO[0052] Found ClusterServiceVersion "default/memcached-operator.v0.0.2" phase: Pending
INFO[0057] Found ClusterServiceVersion "default/memcached-operator.v0.0.2" phase: InstallReady
INFO[0058] Found ClusterServiceVersion "default/memcached-operator.v0.0.2" phase: Installing
INFO[0095] Found ClusterServiceVersion "default/memcached-operator.v0.0.2" phase: Succeeded
Upgrading a bundle that was installed traditionally using OLM
An operator bundle can be upgraded even if it was originally deployed using OLM without using the run bundle
command.
Let’s see how to deploy an operator bundle traditionally using OLM and then upgrade the operator bundle to a newer version.
First, create a CatalogSource by building the CatalogSource from a catalog.
$ oc create -f catalogsource.yaml
# catalogsource.yaml
kind: CatalogSource
metadata:
name: etcdoperator
namespace: default
spec:
displayName: Etcd Operators
image: <some-registry>/etcd-catalog:latest
sourceType: grpc
Next, install the operator bundle by creating a subscription.
$ oc create -f subscription.yaml
Once the Operator bundle is deployed, you can use the run bundle-upgrade
command by specifing the new bundle image that you want to upgrade to.
$ operator-sdk run bundle-upgrade <some-registry>/etcd-bundle:v0.0.2
INFO[0000] Found existing subscription with name etcd and namespace default
INFO[0000] Found existing catalog source with name etcdoperator and namespace default
INFO[0005] Successfully created registry pod: <some-registry>-etcd-bundle-0-0-2
INFO[0005] Updated catalog source etcdoperator with address and annotations
INFO[0005] Deleted previous registry pod with name "<some-registry>-etcd-bundle-0-0-1"
INFO[0005] Approved InstallPlan install-6vrzh for the Subscription: etcd
INFO[0005] Waiting for ClusterServiceVersion "default/etcdoperator.v0.0.2" to reach 'Succeeded' phase
INFO[0005] Waiting for ClusterServiceVersion "default/etcdoperator.v0.0.2" to appear
INFO[0007] Found ClusterServiceVersion "default/etcdoperator.v0.0.2" phase: Pending
INFO[0008] Found ClusterServiceVersion "default/etcdoperator.v0.0.2" phase: Installing
INFO[0018] Found ClusterServiceVersion "default/etcdoperator.v0.0.2" phase: Succeeded
INFO[0018] Successfully upgraded to "etcdoperator.v0.0.2"
OLM and Operator Registry consumes Operator bundles via a catalog of Operators, implemented as an index image, which are composed of one or more bundles. To build and push a memcached-operator bundle image for version v0.0.1, run:
$ make bundle-build bundle-push BUNDLE_IMG=<some-registry>/memcached-operator-bundle:v0.0.1
Now you can build and push the catalog by running catalog-*
Makfile targets, which use the Operator package manager tool to build the catalog:
$ make catalog-build catalog-push CATALOG_IMG=<some-registry>/memcached-operator-catalog:v0.0.1
Assuming IMAGE_TAG_BASE = <some-registry>/memcached-operator
has the desired tag base, you can inline the above two commands to:
$ make bundle-build bundle-push catalog-build catalog-push
Which will build and push both <some-registry>/memcached-operator-bundle:v0.0.1
and .