Skip to content

Commit 15cdb35

Browse files
ci: bypass v1 registries.conf in opm catalog render (#241)
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 <noreply@anthropic.com>
1 parent 52976c0 commit 15cdb35

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,7 @@ catalog-template: # Generate catalog template with all bundles from registry
598598

599599
.PHONY: catalog-render
600600
catalog-render: opm catalog-template ## Generate FBC catalog from template
601-
$(OPM) alpha render-template catalog/clickhouse-operator-template.yaml > catalog/catalog.yaml
601+
CONTAINERS_REGISTRIES_CONF=/dev/null $(OPM) alpha render-template catalog/clickhouse-operator-template.yaml > catalog/catalog.yaml
602602
$(OPM) validate catalog
603603

604604
.PHONY: catalog-build

0 commit comments

Comments
 (0)