Skip to content

Commit 6d26a32

Browse files
authored
Don't do digest pinning by default (#1083)
Digest pinning will be done during the release process in the release GH action. It will simplify local development and the release process itself as to make the pinning work, the sail operator image must be already pushed to registry. Signed-off-by: Filip Brychta <fbrychta@redhat.com>
1 parent d0f3242 commit 6d26a32

File tree

2 files changed

+56
-165
lines changed

2 files changed

+56
-165
lines changed

Makefile.core.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ BUNDLE_GEN_FLAGS ?= -q --overwrite --version $(VERSION) $(BUNDLE_METADATA_OPTS)
151151
# It also adds .spec.relatedImages field to generated CSV
152152
# Note that 'operator-sdk generate bundle' always removes spec.relatedImages field when USE_IMAGE_DIGESTS=false, even if the field already exists in the base CSV
153153
# Make sure to enable this before creating a release as it's a requirement for disconnected environments.
154-
USE_IMAGE_DIGESTS ?= true
154+
USE_IMAGE_DIGESTS ?= false
155155
ifeq ($(USE_IMAGE_DIGESTS), true)
156156
BUNDLE_GEN_FLAGS += --use-image-digests
157157
endif

0 commit comments

Comments
 (0)