diff --git a/custom-catalog-minikube.yaml b/custom-catalog-minikube.yaml deleted file mode 100644 index 35fcab374..000000000 --- a/custom-catalog-minikube.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# -# Copyright (c) 2019-2021 Red Hat, Inc. -# This program and the accompanying materials are made -# available under the terms of the Eclipse Public License 2.0 -# which is available at https://www.eclipse.org/legal/epl-2.0/ -# -# SPDX-License-Identifier: EPL-2.0 -# -# Contributors: -# Red Hat, Inc. - initial API and implementation -# - -apiVersion: operators.coreos.com/v1alpha1 -kind: CatalogSource -metadata: - name: eclipse-che-preview-custom - namespace: che-namespace -spec: - image: quay.io/eclipse/eclipse-che-kubernetes-opm-catalog:preview - sourceType: grpc - updateStrategy: - registryPoll: - interval: 5m diff --git a/src/tasks/installers/olm.ts b/src/tasks/installers/olm.ts index 40a4450aa..97adfdee9 100644 --- a/src/tasks/installers/olm.ts +++ b/src/tasks/installers/olm.ts @@ -136,7 +136,7 @@ export class OLMTasks { title: 'Create next index CatalogSource', task: async (ctx: any, task: any) => { if (!await kube.catalogSourceExists(NEXT_CATALOG_SOURCE_NAME, ctx.operatorNamespace)) { - const catalogSourceImage = `quay.io/eclipse/eclipse-che-${ctx.generalPlatformName}-opm-catalog:preview` + const catalogSourceImage = `quay.io/eclipse/eclipse-che-${ctx.generalPlatformName}-opm-catalog:next` const nextCatalogSource = this.constructIndexCatalogSource(ctx.operatorNamespace, catalogSourceImage) await kube.createCatalogSource(nextCatalogSource) await kube.waitCatalogSource(ctx.operatorNamespace, NEXT_CATALOG_SOURCE_NAME)