From 98e97ebe131b1247277f9e82539cd41dfcc02b90 Mon Sep 17 00:00:00 2001 From: Pervakov Grigorii Date: Fri, 19 Jun 2026 15:51:29 +0200 Subject: [PATCH] ci: bypass v1 registries.conf in opm catalog render opm v1.72.0 (bumped from v1.68.0 in #240) ships a newer containers/image that dropped v1->v2 auto-conversion of registries.conf and hard-errors on the ubuntu-latest runner's v1-format /etc/containers/registries.conf, breaking `opm alpha render-template` in the catalog build. Point CONTAINERS_REGISTRIES_CONF at /dev/null so the lib uses built-in defaults; fully-qualified ghcr.io bundle pulls need no registries config. Co-Authored-By: Claude Opus 4.7 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0c3dbf6..a71afcd 100644 --- a/Makefile +++ b/Makefile @@ -598,7 +598,7 @@ catalog-template: # Generate catalog template with all bundles from registry .PHONY: catalog-render catalog-render: opm catalog-template ## Generate FBC catalog from template - $(OPM) alpha render-template catalog/clickhouse-operator-template.yaml > catalog/catalog.yaml + CONTAINERS_REGISTRIES_CONF=/dev/null $(OPM) alpha render-template catalog/clickhouse-operator-template.yaml > catalog/catalog.yaml $(OPM) validate catalog .PHONY: catalog-build