che-operator/olm
Anatolii Bazko 61049e7814
ci: don't update csv in tech-preview-stable-all-namespaces channel since it is copied from next-all-namespaces and contain all neccessary info (#1114)
Signed-off-by: Anatolii Bazko <abazko@redhat.com>
2021-10-01 09:19:04 +03:00
..
README.md chore: Rename channel from nightly to next (#977) 2021-08-03 16:56:05 +03:00
addDigests.sh fix: Remove previous RELATED_IMAGES before adding new ones (#967) 2021-07-26 12:38:42 +03:00
buildAndPushBundleImages.sh Fix stable update test. Fix release scripts. (#979) 2021-07-30 16:31:15 +03:00
buildDigestMap.sh feat: Import Devworkspace Che Operator (#925) 2021-08-11 15:07:44 +03:00
check-yq.sh feat: Newer operator sdk (#826) 2021-07-19 14:29:11 +03:00
ci.yaml chore: Rename channel from nightly to next (#977) 2021-08-03 16:56:05 +03:00
digestExcludeList ci: Add next images build (#863) 2021-06-30 15:14:04 +03:00
docker-run.sh feat: Newer operator sdk (#826) 2021-07-19 14:29:11 +03:00
dockerContainerExtract.sh CRW-563 improve generation of digests from tags in registries and operator (#206) 2020-03-26 10:43:12 +02:00
force-pulling-olm-images-job.yaml Use new opm bundle format. (#423) 2020-09-10 10:33:24 +03:00
images.sh feat: Import Devworkspace Che Operator (#925) 2021-08-11 15:07:44 +03:00
license.txt feat: Add RELATED_IMAGES environment variables to operator.yaml on release (#893) 2021-07-08 12:16:46 +03:00
minikube-registry-addon.sh Use new opm bundle format. (#423) 2020-09-10 10:33:24 +03:00
olm.sh fix: correct CSVs and metadata (#999) 2021-09-29 14:42:45 +03:00
prepare-community-operators-update.sh feat: Rename stable-all-namespaces channel to tech-preview-stable-all-namespaces 2021-09-06 09:42:32 +02:00
release-olm-files.sh ci: don't update csv in tech-preview-stable-all-namespaces channel since it is copied from next-all-namespaces and contain all neccessary info (#1114) 2021-10-01 09:19:04 +03:00
testCatalogSource.sh chore: Rename channel from nightly to next (#977) 2021-08-03 16:56:05 +03:00
testUpdate.sh chore: Rename channel from nightly to next (#977) 2021-08-03 16:56:05 +03:00

README.md

Operator lifecycle manager

Prerequisites

OLM packages scripts are using some required dependencies that need to be installed

WARNING: Please make sure to use the precise v1.7.1 version of the operator-sdk.

Eclipse Che OLM bundles

OLM (operator lifecycle manager) provides ways of installing operators. One of the convenient way how to achieve it is by using OLM bundles. See more about the format: https://github.com/openshift/enhancements/blob/master/enhancements/olm/operator-bundle.md. There two "next" platform-specific OLM bundles for Сhe operator:

  • bundle/next/eclipse-che-preview-kubernetes/manifests
  • bundle/next/eclipse-che-preview-openshift/manifests

Each bundle consists of a cluster service version file (CSV) and a custom resource definition file (CRD). CRD file describes checlusters Kubernetes api resource object(object fields name, format, description and so on). Kubernetes api needs this information to correctly store a custom resource object "checluster". Custom resource object users could modify to change Eclipse Che configuration. Che operator watches checlusters object and re-deploy Che with desired configuration. The CSV file contains all "deploy" and "permission" specific information, which OLM needs to install Eclipse Che operator.

Testing custom CatalogSource and next bundle images

To test next Che operator you have to use the OLM CatalogSource(index) image. CatalogSource image stores in the internal database information about OLM bundles with different versions of the Eclipse Che. For next channel (dependent on platform) Eclipse Che provides two CatalogSource images:

  • quay.io/eclipse/eclipse-che-kubernetes-opm-catalog:preview for Kubernetes platform;
  • quay.io/eclipse/eclipse-che-openshift-opm-catalog:preview for Openshift platform;

For each new next version Eclipse Che provides next bundle image with name pattern:

quay.io/eclipse/eclipse-che-<openshift|kubernetes>-opm-bundles:<CHE_VERSION>-<INCREMENTAL_VERSION>.next

For example:

quay.io/eclipse/eclipse-che-kubernetes-opm-bundles:7.18.0-1.next
quay.io/eclipse/eclipse-che-openshift-opm-bundles:7.19.0-5.next

Build custom next/stable OLM images

For test purpose you can build your own "next" or "stable" CatalogSource and bundle images with your latest development changes and use it in the test scripts. To build these images you can use script olm/buildAndPushBundleImages.sh:

$ export IMAGE_REGISTRY_USER_NAME=<IMAGE_REGISTRY_USER_NAME> && \
  export IMAGE_REGISTRY_HOST=<IMAGE_REGISTRY_HOST> && \
  ./buildAndPushBundleImages.sh -p <openshift|kubernetes> -c <next|stable> -i <FROM-INDEX-IMAGE>

This script will build and push for you two images: CatalogSource(index) and bundle one:

  • ${IMAGE_REGISTRY_HOST}/${IMAGE_REGISTRY_USER_NAME}/eclipse-che-<openshift|kubernetes>-opm-bundles:<CHE_VERSION>-<INCREMENTAL_VERSION>.next
  • ${IMAGE_REGISTRY_HOST}/${IMAGE_REGISTRY_USER_NAME}/eclipse-che-<openshift|kubernetes>-opm-catalog:preview

CatalogSource images are additive. It's mean that you can re-use bundles from another CatalogSource image and include them to your custom CatalogSource image. For this purpose you can specify the parameter -i:

$ export IMAGE_REGISTRY_USER_NAME=<IMAGE_REGISTRY_USER_NAME> && \
  export IMAGE_REGISTRY_HOST=<IMAGE_REGISTRY_HOST> && \
  ./buildAndPushBundleImages.sh -p <openshift|kubernetes> -n <next|stable> -i <FROM-INDEX-IMAGE>

Testing custom CatalogSource and bundle images on the Openshift

To test the latest custom "next" bundle:

$ ./testCatalogSource.sh "openshift" "next" <ECLIPSE_CHE_NAMESPACE>

If your CatalogSource image contains few bundles, you can test migration from previous bundle to the latest:

$ export IMAGE_REGISTRY_USER_NAME=<IMAGE_REGISTRY_USER_NAME> && \
  export IMAGE_REGISTRY_HOST=<IMAGE_REGISTRY_HOST> && \
  ./testUpdate.sh "openshift" "next" <ECLIPSE_CHE_NAMESPACE>

Note, to test your own operator image, it must be defined in OPERATOR_IMAGE environment variable before running testCatalogSource.sh script, for example:

export OPERATOR_IMAGE=registry/account/che-operator:tag

Testing custom CatalogSource and bundle images on the Kubernetes

To test your custom CatalogSource and bundle images on the Kubernetes you need to use public image registry. For "docker.io" you don't need any extra steps with pre-creation image repositories. But for "quay.io" you should pre-create the bundle and catalog image repositories manually and make them publicly visible. If you want to save repositories "private", then it is not necessary to pre-create them, but you need to provide an image pull secret to the cluster to prevent image pull 'unauthorized' error.

To test the latest custom "next" bundle:

$ export IMAGE_REGISTRY_USER_NAME=<IMAGE_REGISTRY_USER_NAME> && \
  export IMAGE_REGISTRY_HOST=<IMAGE_REGISTRY_HOST> && \
 ./testCatalogSource.sh "kubernetes" "next" <ECLIPSE_CHE_NAMESPACE>

If your CatalogSource image contains few bundles, you can test migration from previous bundle to the latest:

$ export IMAGE_REGISTRY_USER_NAME=<IMAGE_REGISTRY_USER_NAME> && \
  export IMAGE_REGISTRY_HOST=<IMAGE_REGISTRY_HOST> && \
  ./testUpdate.sh "kubernetes" "next" <ECLIPSE_CHE_NAMESPACE>

Also you can test your changes without a public registry. You can use the minikube cluster and enable the minikube "registry" addon. For this purpose use the script:

$ olm/minikube-registry-addon.sh

This script creates port forward to minikube private registry: 127.0.0.1:5000. Should be launched before test execution in the separated terminal. To stop this script you can use Ctrl+C. You can check that private registry was forwarded to the localhost:

$ curl -X GET localhost:5000/v2/_catalog
{"repositories":[]}

With this private registry you can test Che operator from development bundle:

$ export IMAGE_REGISTRY_HOST="127.0.0.1:5000" && \
  export IMAGE_REGISTRY_USER_NAME="" && \
  ./testCatalogSource.sh "kubernetes" "next" <ECLIPSE_CHE_NAMESPACE>

Tips: If minikube was installed locally (driver 'none', local installation minikube), then registry is available on the host 0.0.0.0 without port forwarding but it requires sudo.

Install stable "preview" Eclipse Che using chectl

Before publishing Eclipse Che in the community operator catalogs, we are testing new release using "stable" OLM channel from "preview" catalog source image. Stable "preview" Eclipse Che can be installed via chectl.

  1. Create a custom catalog source yaml and define platform(openshift or kubernetes):
apiVersion:  operators.coreos.com/v1alpha1
kind:         CatalogSource
metadata:
  name:         eclipse-che-preview-custom
  namespace:    <che-namespace>
spec:
  image:        quay.io/eclipse/eclipse-che-<openshift|kubernetes>-opm-catalog:preview
  sourceType:  grpc
  updateStrategy:
    registryPoll:
      interval: 5m
  1. Deploy Che operator:
$ chectl server:deploy --installer=olm --platform=<CHECTL_SUPPORTED_PLATFORM> --catalog-source-yaml <PATH_TO_CUSTOM_CATALOG_SOURCE_YAML> --olm-channel=stable --package-manifest-name=eclipse-che-preview-<openshift|kubernetes>