If you are working in an environment where your cluster is not connected to the internet, you can install Event Streams by using the container-based software that is provided as a Container Application Software for Enterprises (CASE) bundle.
CASE is a specification that defines metadata and structure for packaging, managing, and unpacking containerized applications. When deploying in an offline (also referred to as air-gapped or disconnected) environment, you mimic a typical online installation by using images in your own registry. You can use the CASE content to mirror images to an internal registry within your restricted environment, and to install the images from that registry.
Follow the instructions to download the Event Streams CASE bundle, mirror the image, apply the catalog source, and install the operator on OpenShift and other Kubernetes platforms.
Note: For completing tasks by using the command line, you can use both kubectl
and oc
commands if your deployment is on the OpenShift Container Platform. This documentation set includes instructions that use the kubectl
command, except for cases where the task is specific to OpenShift.
Prerequisites
Ensure you have the following set up for your environment:
- A computer with access to both the public internet and the network-restricted environment on which you can run the required commands. This computer must also have access to a local registry and to the OpenShift Container Platform clusters, and is referred to as a bastion host.
- Docker or Podman CLI installed.
- A private container registry that can be accessed by the cluster and the bastion host, and which will be used to store all images in your restricted network.
-
The IBM Catalog Management Plug-in for IBM Cloud Paks (
ibm-pak
) installed. This plug-in allows you to runkubectl ibm-pak
commands against the cluster. Run the following command to confirm thatibm-pak
is installed:kubectl ibm-pak --help
If you are using Red Hat OpenShift Container Platform, ensure you have the following set up for your environment:
- A supported version of OpenShift Container Platform installed. For supported versions, see the support matrix.
- The OpenShift Container Platform CLI (
oc
) installed.
If you are using other Kubernetes platforms, ensure you have the following set up for your environment:
- A supported version of a Kubernetes platform installed. For supported versions, see the support matrix.
- The Kubernetes command-line tool (
kubectl
) installed. - The Helm command-line tool (
helm
) installed. - Skopeo installed to move images from one repository to another.
Prepare your host
You must be able to connect your bastion host to the internet and to the restricted network environment (with access to the OpenShift Container Platform cluster and the local registry) at the same time.
Ensure that the prerequisites are set up and that the bastion host can access:
- The public internet to download the CASE and images.
- The image registry where all the images will be mirrored to.
- The OpenShift or other Kubernetes cluster to install the operator on.
Note: In the absence of a bastion host, prepare a portable device with public internet access to download the CASE and images, and an image registry where the images will be mirrored.
Important: Ensure you have access to the Kubernetes cluster by running the kubectl get namespaces
command which lists all the available namespaces.
Download the CASE bundle
Before mirroring your images, set the environment variables for the CASE images on your host, and then download the CASE by following these instructions:
-
Configure the GitHub repository to download the CASE:
kubectl ibm-pak config repo 'default' -r "https://github.com/IBM/cloud-pak/raw/master/repo/case/" --enable
-
Run the following command to download, validate, and extract the Event Streams CASE.
kubectl ibm-pak get ibm-eventstreams --version <case-version>
Where
<case-version>
is the version of the CASE file to be downloaded.The CASE is downloaded in
~/.ibm-pak
and the following output is displayed:Downloading and extracting the CASE ... - Success Retrieving CASE version ... - Success Validating the CASE ... Validating the signature for the ibm-eventstreams CASE... - Success Creating inventory ... - Success Finding inventory items - Success Resolving inventory items ... Parsing inventory items - Success Download of CASE: ibm-eventstreams, version: 3.4.0 is complete
Note: To download the latest version of CASE, do not specify the CASE version. For example:
oc ibm-pak get ibm-eventstreams
-
Verify that the CASE and images (
.csv
) files have been generated for Event Streams.For example, ensure that the following files have been generated for Event Streams.
tree ~/.ibm-pak ├── config │ └── config.yaml ├── data │ ├── cases │ │ └── ibm-eventstreams │ │ └── 3.4.0 │ │ ├── caseDependencyMapping.csv │ │ ├── charts │ │ ├── ibm-eventstreams-3.4.0-airgap-metadata.yaml │ │ ├── ibm-eventstreams-3.4.0-charts.csv │ │ ├── ibm-eventstreams-3.4.0-images.csv │ │ ├── ibm-eventstreams-3.4.0.tgz │ │ └── resourceIndexes │ │ └── ibm-eventstreams-resourcesIndex.yaml │ └── mirror └── logs └── oc-ibm_pak.log 9 directories, 8 files
Configure registry authentication
To mirror images across both the source registry and the image registry where all images are available publicly, you must create an authentication secret for each. You need a Docker CLI login (docker login
) or Podman CLI login (podman login
) for configuring the registry.
A Skopeo CLI login (skopeo login
) is also required for Kubernetes platforms other than OpenShift.
For Event Streams, all images are either present in the IBM Entitled Registry (cp.icr.io
), which requires authentication, or in the IBM Container Registry (icr.io/cpopen
), which does not.
Creating an authentication secret for the source registry
Run the following command to create an authentication secret for the source registry:
docker login <source-registry> --username <source-registry-user> --password <source-registry-pass>
Where:
<source-registry>
is the Entitled Registry (cp.icr.io
).<source-registry-user>
is your username.<source-registry-pass>
is your entitlement key.
Additionally, if you are installing on Kubernetes platforms other than OpenShift, run the following command:
skopeo login <source-registry> -u <source-registry-user> -p <source-registry-pass>
Creating an authentication secret for the image registry
Run the following command to create an authentication secret for the image registry:
docker login <image-registry> --username <image-registry-user> --password <image-registry-pass>
Additionally, if you are running on Kubernetes platforms other than OpenShift, run the following command:
skopeo login <image-registry> -u <image-registry-user> -p <image-registry-pass>
Where:
<image-registry>
is the internal container image registry.<image-registry-user>
is the username for the internal container image registry.<image-registry-pass>
is the password for the internal container image registry.
Mirror the images
The process of mirroring images pulls the image from the internet and pushes it to your local registry. After mirroring your images, you can configure your cluster and complete the offline installation.
Complete the following steps to mirror the images from your host to your offline environment:
-
Run the following command to generate mirror manifests:
kubectl ibm-pak generate mirror-manifests ibm-eventstreams <image-registry>
Where
<image-registry>
is the internal container image registry.Note: If you need to filter for a specific image group, add the parameter
--filter <image_group>
to this command.This generates the following files based on the image registry provided:
- catalog-sources.yaml
- catalog-sources-linux-
<arch>
.yaml (if there are architecture specific catalog sources) - image-content-source-policy.yaml
- images-mapping.txt
-
Run the following command to copy the images to the local registry. Your device must be connected to both the internet and the restricted network environment that contains the local registry.
If you are installing on the OpenShift Container Platform, run the following command:
oc image mirror -f ~/.ibm-pak/data/mirror/ibm-eventstreams/<case-version>/images-mapping.txt --filter-by-os '.*' --insecure --skip-multiple-scopes --max-per-registry=1
If you are installing on Kubernetes platforms other than OpenShift, run the following command:
cat ~/.ibm-pak/data/mirror/ibm-eventstreams/<case-version>/images-mapping.txt | awk -F'=' '{ print "skopeo copy --all docker://"$1" docker://"$2 }' | xargs -I {} sh -c 'echo {}; {}'
Note: If you are using a macOS system and encounter the
xargs: command line cannot be assembled, too long
error, add-S1024
toxargs
, and run the command as follows:cat ~/.ibm-pak/data/mirror/ibm-eventstreams/<case-version>/images-mapping.txt | awk -F'=' '{ print "skopeo copy --all docker://"$1" docker://"$2 }' | xargs -S1024 -I {} sh -c 'echo {}; {}'
Where:
<case-version>
is the version of the CASE file to be copied.<image-registry>
is the internal container image registry.
Ensure that all the images have been mirrored to the image registry by checking the registry.
Create ImageContentSourcePolicy
on OpenShift platform
Note: Only applicable when installing Event Streams on the OpenShift Container Platform.
- Log in to your Red Hat OpenShift Container Platform as a cluster administrator by using the
oc
CLI (oc login
). - Update the global image pull secret for your OpenShift cluster by following the steps in OpenShift documentation. This enables your cluster to have proper authentication credentials to pull images from your
<image-registry>
, as specified in theimage-content-source-policy.yaml
. -
Apply
ImageContentSourcePolicy
YAML by running the following command:oc apply -f ~/.ibm-pak/data/mirror/ibm-eventstreams/<case-version>/image-content-source-policy.yaml
Where
<case-version>
is the version of the CASE file. -
Additionally, a global image pull secret must be added so that images can be pulled from the image registry. Follow the instructions in the OpenShift documentation to add credentials for the image registry.
Important: Cluster resources must adjust to the new pull secret, which can temporarily limit the access to the cluster. Applying the
ImageSourceContentPolicy
causes cluster nodes to recycle, which results in limited access to the cluster until all the nodes are ready. -
Verify that the
ImageContentSourcePolicy
resource is created:oc get imageContentSourcePolicy
Important: After the
ImageContentsourcePolicy
and global image pull secret are applied, you might see the node status asReady
,Scheduling
, orDisabled
. Wait until all the nodes show aReady
status. -
Verify your cluster node status and wait for all nodes to be updated before proceeding:
oc get MachineConfigPool -w
Apply catalog sources to your cluster on OpenShift platform
Note: Only applicable when installing Event Streams on the OpenShift Container Platform.
Apply the catalog sources for the operator to the cluster by running the following command:
oc apply -f ~/.ibm-pak/data/mirror/ibm-eventstreams/<case-version>/catalog-sources.yaml
Where <case-version>
is the case version.
Install the operator
Follow the instructions to install the operator based on your platform.
Installing on OpenShift
After considering the operator requirements, resource requirements, and cluster-scoped permissions, you can install the operator by using the OpenShift Container Platform web console or command line. For more information, see the instructions for installing the Event Streams operator.
Installing on other Kubernetes platforms by using the kubectl
Complete the following steps to install the operator:
-
Create a namespace where you want to install the operator:
kubectl create namespace <image-namespace>
-
Create an image pull secret called
ibm-entitlement-key
in the namespace where you want to install the Event Streams operator. The secret enables container images to be pulled from the image registry:kubectl create secret docker-registry ibm-entitlement-key --docker-username="<image-registry-user>" --docker-password="<image-registry-pass>" --docker-server="<image-registry>" -n <image-namespace>
-
Install the operator by using the Helm CLI:
helm install <release-name> ~/.ibm-pak/data/cases/ibm-eventstreams/<case-version>/charts/ibm-eventstreams-operator-<case-version>.tgz -n <image-namespace> --set imagePullPolicy="Always" --set public.repo=<image-registry> --set public.path="cpopen/" --set private.repo=<image-registry> --set private.path="cp/" --set watchAnyNamespace=<true/false>
Where:
<release-name>
is the name you provide to identify your operator.<image-namespace>
is the namespace where we want to install IBM Event Streams.<case-version>
is the CASE version.<image-registry>
is the internal container image registry.<image-registry-user>
is the username for the internal container image registry.<image-registry-pass>
is the password for the internal container image registry.
- Wait for the installation to complete.
- You can now verify your installation and consider other post-installation tasks.
Install an instance
Event Streams instances can be created after the operators are installed. You can install the instances by using the OpenShift Container Platform web console. For more information, see the instructions for installing the Event Streams instances on OpenShift, or on other Kubernetes platforms.