-
Notifications
You must be signed in to change notification settings - Fork 38
Home
Leo Christy Jesuraj edited this page Jun 19, 2023
·
18 revisions
Note: This driver is for internal testing and demo purposes only. For production use, refer to the instructions here
- Update your OpenShift cluster with a global pull secret for the cp.stg.icr.io entitled registry:
- Get an entitlement key to the IBM Entitled Container Fulfillment Registry. Log in to MyIBM Container Software Library with the IBMid and password that are associated with the entitled software. Click on 'View library' on the left and it should show that you have entitlement for 'all' IBM software. Follow the process under Obtaining a staging entitlement key if you are not able to access the library or you don't have entitlement to 'all' IBM software.
- In the Entitlement keys section, select
Copy key
to copy the entitlement key to the clipboard. - Use the console to configure the global pull secret with entitled registry (cp.stg.icr.io) credentials.
- In the console, click
Workloads
>Secrets
and select theopenshift-config
namespace. - Find the existing
pull-secret
secret. - Select
Edit Secret
. - Click
Add Credentials
to add an entry for the entitled registry. Specifycp.stg.icr.io
as the registry server address,cp
as the username, and the entitlement key that you obtained in the previous step as the password.
- To install the Operator using Operator Lifecycle Manager (OLM). Skip 2.1, 2.2 and 2.3 and follow step 3 if you want to use the kustomize-based install option:
2.1. Create ImageContentSourcePolicy
for mirroring (this is needed because Operator artifacts are built with production registry reference, but until we GA the images would only be in the staging registry):
apiVersion: operator.openshift.io/v1alpha1
kind: ImageContentSourcePolicy
metadata:
name: mirror-config
spec:
repositoryDigestMirrors:
- mirrors:
- cp.stg.icr.io/cp
source: cp.icr.io/cp
- mirrors:
- cp.stg.icr.io/cp
source: icr.io/cpopen
- mirrors:
- cp.stg.icr.io/cp
source: icr.io/appcafe
(To apply the resources, create a file and then copy and paste the contents above on your oc enabled system and run oc apply -f <fileName>)
2.2. Add the CatalogSource for Open Liberty Operator:
apiVersion: operators.coreos.com/v1alpha1
kind: CatalogSource
metadata:
name: olo-catalog
namespace: openshift-marketplace
spec:
displayName: Open Liberty 1.2.1-rc.2
image: 'icr.io/appcafe/open-liberty-operator-catalog@sha256:5298bed424f87f480cb0756d3dbf4cc309af1b0c9459034c814dbcc55680b808'
sourceType: grpc
2.3. Install or Upgrade the Open Liberty Operator via OperatorHub:
2.3.1. To Install the Open Liberty Operator:
- From the OpenShift UI, click on
Operators
and thenOperatorHub
- In the search box type
open liberty
. Sometimes it takes a few minutes for the CatalogSource to be loaded by OCP. The operator won't show up until the CatalogSource is loaded. - Select the Open Liberty operator and click Install
- Complete the install with the default options
2.3.2. To Upgrade the Open Liberty Operator:
- Uninstall the OLO Operator
- Go to Administration > CustomResourceDefinitions
- Find
CatalogSource
- Click on Instances and find
olo-catalog
- Either update image SHA value from wiki or just delete
olo-catalog
instance and recreate from the wiki page with the latest sha value - Complete the install with the default options
- Create custom resources (CRs) to deploy applications and to gather trace/dump:
- Sample CRs are available from the OpenShift UI as well as in this folder
- Configuration options within the CRs (under
.spec
section) are the same as Runtime Component Operator and WebSphere Liberty Operator. Their relevant documentations are here and here. Just change theapiVersion
andkind
to the following:
apiVersion: apps.openliberty.io/v1
kind: OpenLibertyApplication