Installing the opm CLI
About the opm CLI
The opm CLI tool is provided by the Operator Framework for use with the Operator bundle format. This tool allows you to create and maintain catalogs of Operators from a list of Operator bundles that are similar to software repositories. The result is a container image which can be stored in a container registry and then installed on a cluster.
A catalog contains a database of pointers to Operator manifest content that can be queried through an included API that is served when the container image is run. On OpenShift Container Platform, Operator Lifecycle Manager (OLM) can reference the image in a catalog source, defined by a CatalogSource object, which polls the image at regular intervals to enable frequent updates to installed Operators on the cluster.
-
See Operator Framework packaging format for more information about the bundle format.
Installing the opm CLI
You can install the opm CLI tool on your Linux, macOS, or Windows workstation.
-
For Red Hat Enterprise Linux (RHEL) 9.0 and later, you must provide the following packages:
-
podmanversion 1.9.3+ (version 2.0+ recommended) -
glibcversion 2.28+
-
-
Navigate to the OpenShift mirror site and download the latest version of the tarball that matches your operating system.
-
Unpack the archive.
-
For Linux or macOS:
$ tar xvf <file> -
For Windows, unzip the archive with a ZIP program.
-
-
Place the file anywhere in your
PATH.-
For Linux or macOS:
-
Check your
PATH:$ echo $PATH -
Move the file. For example:
$ sudo mv ./opm /usr/local/bin/
-
-
For Windows:
-
Check your
PATH:C:\> path -
Move the file:
C:\> move opm.exe <directory>
-
-
-
After you install the
opmCLI, verify that it is available:$ opm version
Additional resources
-
See Managing custom catalogs for
opmprocedures including creating, updating, and pruning catalogs.