$ oc patch OperatorHub cluster --type json \
-p '[{"op": "add", "path": "/spec/disableAllDefaultSources", "value": true}]'
For OKD clusters that are installed on restricted networks, also known as disconnected clusters, Operator Lifecycle Manager (OLM) by default cannot access the Red Hat-provided OperatorHub sources hosted on remote registries because those remote sources require full internet connectivity.
However, as a cluster administrator you can still enable your cluster to use OLM in a restricted network if you have a workstation that has full internet access. The workstation, which requires full internet access to pull the remote OperatorHub content, is used to prepare local mirrors of the remote sources, and push the content to a mirror registry.
The mirror registry can be located on a bastion host, which requires connectivity to both your workstation and the disconnected cluster, or a completely disconnected, or airgapped, host, which requires removable media to physically move the mirrored content to the disconnected environment.
This guide describes the following process that is required to enable OLM in restricted networks:
Disable the default remote OperatorHub sources for OLM.
Use a workstation with full internet access to create and push local mirrors of the OperatorHub content to a mirror registry.
Configure OLM to install and manage Operators from local sources on the mirror registry instead of the default remote sources.
After enabling OLM in a restricted network, you can continue to use your unrestricted workstation to keep your local OperatorHub sources updated as newer versions of Operators are released.
While OLM can manage Operators from local sources, the ability for a given Operator to run successfully in a restricted network still depends on the Operator itself. The Operator must:
You can search on the Red Hat Ecosystem Catalog for a list of Red Hat Operators that support running in disconnected mode by selecting the Disconnected filter under Infrastucture Features: |
Log in to your OKD cluster as a user with cluster-admin
privileges.
If you want to prune the default catalog and selectively mirror only a subset of Operators, install the opm
CLI.
If you are using OLM in a restricted network on IBM Z, you must have at least 12 GB allocated to the directory where you place your registry. |
Operator catalogs that source content provided by Red Hat and community projects are configured for OperatorHub by default during an OKD installation. In a restricted network environment, you must disable the default catalogs as a cluster administrator. You can then configure OperatorHub to use local catalog sources.
Disable the sources for the default catalogs by adding disableAllDefaultSources: true
to the OperatorHub
object:
$ oc patch OperatorHub cluster --type json \
-p '[{"op": "add", "path": "/spec/disableAllDefaultSources", "value": true}]'
Alternatively, you can use the web console to manage catalog sources. From the Administration → Cluster Settings → Global Configuration → OperatorHub page, click the Sources tab, where you can create, delete, disable, and enable individual sources. |
An index image, based on the Operator bundle format, is a containerized snapshot of an Operator catalog. You can prune an index of all but a specified list of packages, which creates a copy of the source index containing only the Operators that you want.
When configuring Operator Lifecycle Manager (OLM) to use mirrored content on restricted network OKD clusters, use this pruning method if you want to only mirror a subset of Operators from the default catalogs.
For the steps in this procedure, the target registry is an existing mirror registry that is accessible by your workstation with unrestricted network access. This example also shows pruning the index image for the default catalog
catalog, but the process is the same for any index image.
Workstation with unrestricted network access
podman
version 1.9.3+
grpcurl
(third-party command-line tool)
opm
version 1.18.0+
Access to a registry that supports Docker v2-2
The internal registry of the OKD cluster cannot be used as the target registry because it does not support pushing without a tag, which is required during the mirroring process. |
Authenticate with your target registry:
$ podman login <target_registry>
Determine the list of packages you want to include in your pruned index.
Run the source index image that you want to prune in a container. For example:
$ podman run -p50051:50051 \
-it quay.io/operatorhubio/catalog:latest
Trying to pull quay.io/operatorhubio/catalog:latest...
Getting image source signatures
Copying blob ae8a0c23f5b1 done
...
INFO[0000] serving registry database=/database/index.db port=50051
In a separate terminal session, use the grpcurl
command to get a list of the packages provided by the index:
$ grpcurl -plaintext localhost:50051 api.Registry/ListPackages > packages.out
Inspect the packages.out
file and identify which package names from this list you want to keep in your pruned index. For example:
...
{
"name": "couchdb-operator"
}
...
{
"name": "eclipse-che"
}
...
{
{
"name": "etcd"
}
...
In the terminal session where you executed the podman run
command, press Ctrl and C to stop the container process.
Run the following command to prune the source index of all but the specified packages:
$ opm index prune \
-f quay.io/operatorhubio/catalog:latest \(1)
-p couchdb-operator,eclipse-che,etcd \(2)
[-i quay.io/openshift/origin-operator-registry:4.8.0] \(3)
-t <target_registry>:<port>/<namespace>/catalog:latest (4)
1 | Index to prune. |
2 | Comma-separated list of packages to keep. |
3 | Required only for IBM Power Systems and IBM Z images: Operator Registry base image with the tag that matches the target OKD cluster major and minor version. |
4 | Custom tag for new index image being built. |
Run the following command to push the new index image to your target registry:
$ podman push <target_registry>:<port>/<namespace>/catalog:latest
where <namespace>
is any existing namespace on the registry.
For example, you might create an olm-mirror
namespace to push all mirrored content to.
You can mirror the Operator content of a Red Hat-provided catalog, or a custom catalog, into a container image registry using the oc adm catalog mirror
command. The target registry must support Docker v2-2. For a cluster on a restricted network, this registry can be one that the cluster has network access to, such as a mirror registry created during a restricted network cluster installation.
The internal registry of the OKD cluster cannot be used as the target registry because it does not support pushing without a tag, which is required during the mirroring process. |
The oc adm catalog mirror
command also automatically mirrors the index image that is specified during the mirroring process, whether it be a Red Hat-provided index image or your own custom-built index image, to the target registry. You can then use the mirrored index image to create a catalog source that allows Operator Lifecycle Manager (OLM) to load the mirrored catalog onto your OKD cluster.
Workstation with unrestricted network access.
podman
version 1.9.3 or later.
Access to mirror registry that supports Docker v2-2.
Decide which namespace on your mirror registry you will use to store the mirrored Operator content. For example, you might create an olm-mirror
namespace.
If your mirror registry does not have Internet access, connect removable media to your workstation with unrestricted network access.
If you are working with private registries, including registry.redhat.io
, set the REG_CREDS
environment variable to the file path of your registry credentials for use in later steps. For example, for the podman
CLI:
$ REG_CREDS=${XDG_RUNTIME_DIR}/containers/auth.json
The oc adm catalog mirror
command extracts the contents of an index image to generate the manifests required for mirroring. The default behavior of the command generates manifests, then automatically mirrors all of the image content from the index image, as well as the index image itself, to your mirror registry. Alternatively, if your mirror registry is on a completely disconnected, or airgapped, host, you can first mirror the content to removable media, move the media to the disconnected environment, then mirror the content from the media to the registry.
Option A: If your mirror registry is on the same network as your workstation with unrestricted network access, take the following actions on your workstation:
If your mirror registry requires authentication, run the following command to log in to the registry:
$ podman login <mirror_registry>
Run the following command to mirror the content:
$ oc adm catalog mirror \
<index_image> \(1)
<mirror_registry>:<port>/<namespace> \(2)
[-a ${REG_CREDS}] \(3)
[--insecure] \(4)
[--index-filter-by-os='<platform>/<arch>'] \(5)
[--manifests-only] (6)
1 | Specify the index image for the catalog you want to mirror. For example, this might be a pruned index image that you created previously, or one of the source index images for the default catalogs, such as quay.io/operatorhubio/catalog:latest . |
2 | Specify the fully qualified domain name (FQDN) for the target registry and namespace to mirror the Operator content to, where <namespace> is any existing namespace on the registry. For example, you might create an olm-mirror namespace to push all mirrored content to. |
3 | Optional: If required, specify the location of your registry credentials file. {REG_CREDS} is required for registry.redhat.io . |
4 | Optional: If you do not want to configure trust for the target registry, add the --insecure flag. |
5 | Optional: Specify which platform and architecture of the index image to select when multiple variants are available. Images are passed as '<platform>/<arch>[/<variant>]' . This does not apply to images referenced by the index. Valid values are linux/amd64 , linux/ppc64le , linux/s390x , and .* |
6 | Optional: Generate only the manifests required for mirroring, and do not actually mirror the image content to a registry. This option can be useful for reviewing what will be mirrored, and it allows you to make any changes to the mapping list if you require only a subset of packages. You can then use the mapping.txt file with the oc image mirror command to mirror the modified list of images in a later step. This flag is intended for only advanced selective mirroring of content from the catalog; the opm index prune command, if you used it previously to prune the index image, is suitable for most catalog management use cases. |
src image has index label for database path: /database/index.db
using database path mapping: /database/index.db:/tmp/153048078
wrote database to /tmp/153048078 (1)
...
wrote mirroring manifests to manifests-catalog-1614211642 (2)
1 | Directory for the temporary index.db database generated by the command. |
2 | Be sure to record the manifests directory name that is generated. This directory name is used in a later step. |
Red Hat Quay does not support nested repositories. As a result, running the |
Option B: If your mirror registry is on a disconnected host, take the following actions.
Run the following command on your workstation with unrestricted network access to mirror the content to local files:
$ oc adm catalog mirror \
<index_image> \(1)
file:///local/index \(2)
[-a ${REG_CREDS}] \
[--insecure] \
[--index-filter-by-os='<platform>/<arch>']
1 | Specify the index image for the catalog you want to mirror. For example, this might be a pruned index image that you created previously, or one of the source index images for the default catalogs, such as quay.io/operatorhubio/catalog:latest . |
2 | Mirrors content to local files in your current directory. |
...
info: Mirroring completed in 5.93s (5.915MB/s)
wrote mirroring manifests to manifests-my-index-1614985528 (1)
To upload local images to a registry, run:
oc adm catalog mirror file://local/index/myrepo/my-index:v1 REGISTRY/REPOSITORY (2)
1 | Be sure to record the manifests directory name that is generated. This directory name is used in a later step. |
2 | Record the expanded file:// path that based on your provided index image. This path is used in a later step. |
Copy the v2/
directory that is generated in your current directory to removable media.
Physically remove the media and attach it to a host in the disconnected environment that has access to the mirror registry.
If your mirror registry requires authentication, run the following command on your host in the disconnected environment to log in to the registry:
$ podman login <mirror_registry>
Run the following command from the parent directory containing the v2/
directory to upload the images from local files to the mirror registry:
$ oc adm catalog mirror \
file://local/index/<repo>/<index_image>:<tag> \(1)
<mirror_registry>:<port>/<namespace> \(2)
[-a ${REG_CREDS}] \
[--insecure] \
[--index-filter-by-os='<platform>/<arch>']
1 | Specify the file:// path from the previous command output. |
2 | Specify the fully qualified domain name (FQDN) for the target registry and namespace to mirror the Operator content to, where <namespace> is any existing namespace on the registry. For example, you might create an olm-mirror namespace to push all mirrored content to. |
Red Hat Quay does not support nested repositories. As a result, running the |
Run the oc adm catalog mirror
command again. Use the newly mirrored index image as the source and the same mirror registry namespace used in the previous step as the target:
$ oc adm catalog mirror \
<mirror_registry>:<port>/<index_image> \
<mirror_registry>:<port>/<namespace> \
--manifests-only \(1)
[-a ${REG_CREDS}] \
[--insecure]
1 | The --manifests-only flag is required for this step so that the command does not copy all of the mirrored content again. |
This step is required because the image mappings in the |
After mirroring the content to your registry, inspect the manifests directory that is generated in your current directory.
The manifests directory name is used in a later step. |
If you mirrored content to a registry on the same network in the previous step, the directory name takes the following form:
manifests-<index_image_name>-<random_number>
If you mirrored content to a registry on a disconnected host in the previous step, the directory name takes the following form:
manifests-index/<namespace>/<index_image_name>-<random_number>
The manifests directory contains the following files, some of which might require further modification:
The catalogSource.yaml
file is a basic definition for a CatalogSource
object that is pre-populated with your index image tag and other relevant metadata. This file can be used as is or modified to add the catalog source to your cluster.
If you mirrored the content to local files, you must modify your |
The imageContentSourcePolicy.yaml
file defines an ImageContentSourcePolicy
object that can configure nodes to translate between the image references stored in Operator manifests and the mirrored registry.
If your cluster uses an |
The mapping.txt
file contains all of the source images and where to map them in the target registry. This file is compatible with the oc image mirror
command and can be used to further customize the mirroring configuration.
If you used the |
On a host with access to the disconnected cluster, create the ImageContentSourcePolicy
(ICSP) object by running the following command to specify the imageContentSourcePolicy.yaml
file in your manifests directory:
$ oc create -f <path/to/manifests/dir>/imageContentSourcePolicy.yaml
where <path/to/manifests/dir>
is the path to the manifests directory for your mirrored content.
You can now create a CatalogSource
object to reference your mirrored index image and Operator content.
You can create an Operator catalog from an index image and apply it to an OKD cluster for use with Operator Lifecycle Manager (OLM).
An index image built and pushed to a registry.
Create a CatalogSource
object that references your index image.
If you used the oc adm catalog mirror
command to mirror your catalog to a target registry, you can use the generated catalogSource.yaml
file as a starting point.
Modify the following to your specifications and save it as a catalogSource.yaml
file:
apiVersion: operators.coreos.com/v1alpha1
kind: CatalogSource
metadata:
name: my-operator-catalog (1)
namespace: olm (2)
spec:
sourceType: grpc
image: <registry>:<port>/<namespace>/catalog:latest (3)
displayName: My Operator Catalog
publisher: <publisher_name> (4)
updateStrategy:
registryPoll: (5)
interval: 30m
1 | If you mirrored content to local files before uploading to a registry, remove any backslash (/ ) characters from the metadata.name field to avoid an "invalid resource name" error when you create the object. |
2 | If you want the catalog source to be available globally to users in all namespaces, specify the olm namespace. Otherwise, you can specify a different namespace for the catalog to be scoped and available only for that namespace. |
3 | Specify your index image. |
4 | Specify your name or an organization name publishing the catalog. |
5 | Catalog sources can automatically check for new versions to keep up to date. |
Use the file to create the CatalogSource
object:
$ oc apply -f catalogSource.yaml
Verify the following resources are created successfully.
Check the pods:
$ oc get pods -n olm
NAME READY STATUS RESTARTS AGE
my-operator-catalog-6njx6 1/1 Running 0 28s
marketplace-operator-d9f549946-96sgr 1/1 Running 0 26h
Check the catalog source:
$ oc get catalogsource -n olm
NAME DISPLAY TYPE PUBLISHER AGE
my-operator-catalog My Operator Catalog grpc 5s
Check the package manifest:
$ oc get packagemanifest -n olm
NAME CATALOG AGE
jaeger-product My Operator Catalog 93s
You can now install the Operators from the OperatorHub page on your OKD web console.
If your index image is hosted on a private registry and requires authentication, see Accessing images for Operators from private registries.
After configuring OperatorHub to use a catalog source that references a custom index image, cluster administrators can keep the available Operators on their cluster up to date by adding bundle images to the index image.
You can update an existing index image using the opm index add
command.
For restricted networks, the updated content must also be mirrored again to the cluster.
opm
version 1.12.3+
podman
version 1.9.3+
An index image built and pushed to a registry.
An existing catalog source referencing the index image.
Update the existing index by adding bundle images:
$ opm index add \
--bundles <registry>/<namespace>/<new_bundle_image>@sha256:<digest> \(1)
--from-index <registry>/<namespace>/<existing_index_image>:<existing_tag> \(2)
--tag <registry>/<namespace>/<existing_index_image>:<updated_tag> \(3)
--pull-tool podman (4)
1 | The --bundles flag specifies a comma-separated list of additional bundle images to add to the index. |
2 | The --from-index flag specifies the previously pushed index. |
3 | The --tag flag specifies the image tag to apply to the updated index image. |
4 | The --pull-tool flag specifies the tool used to pull container images. |
where:
<registry>
Specifies the hostname of the registry, such as quay.io
or mirror.example.com
.
<namespace>
Specifies the namespace of the registry, such as ocs-dev
or abc
.
<new_bundle_image>
Specifies the new bundle image to add to the registry, such as ocs-operator
.
<digest>
Specifies the SHA image ID, or digest, of the bundle image, such as c7f11097a628f092d8bad148406aa0e0951094a03445fd4bc0775431ef683a41
.
<existing_index_image>
Specifies the previously pushed image, such as abc-redhat-operator-index
.
<existing_tag>
Specifies a previously pushed image tag, such as 4.8
.
<updated_tag>
Specifies the image tag to apply to the updated index image, such as 4.8.1
.
$ opm index add \
--bundles quay.io/ocs-dev/ocs-operator@sha256:c7f11097a628f092d8bad148406aa0e0951094a03445fd4bc0775431ef683a41 \
--from-index mirror.example.com/abc/abc-redhat-operator-index:4.8 \
--tag mirror.example.com/abc/abc-redhat-operator-index:4.8.1 \
--pull-tool podman
Push the updated index image:
$ podman push <registry>/<namespace>/<existing_index_image>:<updated_tag>
Follow the steps in the Mirroring an Operator catalog procedure again to mirror the updated content. However, when you get to the step about creating the ImageContentSourcePolicy
(ICSP) object, use the oc replace
command instead of the oc create
command. For example:
$ oc replace -f ./manifests-catalog-<random_number>/imageContentSourcePolicy.yaml
This change is required because the object already exists and must be updated.
Normally, the |
After Operator Lifecycle Manager (OLM) automatically polls the index image referenced in the catalog source at its regular interval, verify that the new packages are successfully added:
$ oc get packagemanifests -n openshift-marketplace