Skip to content
This repository was archived by the owner on Oct 28, 2024. It is now read-only.

Commit 0c8e239

Browse files
FIX target manifest pointed to wrong directory
Signed-off-by: Chris Hein <[email protected]>
1 parent e593785 commit 0c8e239

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -286,8 +286,8 @@ docker-push-core-manifest: ## Push the fat manifest docker image for the core im
286286
docker manifest create --amend $(CONTROLLER_IMG):$(TAG) $(shell echo $(ALL_ARCH) | sed -e "s~[^ ]*~$(CONTROLLER_IMG)\-&:$(TAG)~g")
287287
@for arch in $(ALL_ARCH); do docker manifest annotate --arch $${arch} ${CONTROLLER_IMG}:${TAG} ${CONTROLLER_IMG}-$${arch}:${TAG}; done
288288
docker manifest push --purge $(CONTROLLER_IMG):$(TAG)
289-
$(MAKE) set-manifest-image MANIFEST_IMG=$(CONTROLLER_IMG) MANIFEST_TAG=$(TAG) TARGET_RESOURCE="./config/manager/manager_image_patch.yaml"
290-
$(MAKE) set-manifest-pull-policy TARGET_RESOURCE="./config/manager/manager_pull_policy.yaml"
289+
$(MAKE) set-manifest-image MANIFEST_IMG=$(CONTROLLER_IMG) MANIFEST_TAG=$(TAG) TARGET_RESOURCE="./config/default/manager_image_patch.yaml"
290+
$(MAKE) set-manifest-pull-policy TARGET_RESOURCE="./config/default/manager_pull_policy.yaml"
291291

292292
.PHONY: set-manifest-pull-policy
293293
set-manifest-pull-policy:
@@ -319,8 +319,8 @@ release: clean-release ## Builds and push container images using the latest git
319319
# Set the core manifest image to the production bucket.
320320
$(MAKE) set-manifest-image \
321321
MANIFEST_IMG=$(PROD_REGISTRY)/$(IMAGE_NAME) MANIFEST_TAG=$(RELEASE_TAG) \
322-
TARGET_RESOURCE="./config/manager/manager_image_patch.yaml"
323-
$(MAKE) set-manifest-pull-policy PULL_POLICY=IfNotPresent TARGET_RESOURCE="./config/manager/manager_pull_policy.yaml"
322+
TARGET_RESOURCE="./config/default/manager_image_patch.yaml"
323+
$(MAKE) set-manifest-pull-policy PULL_POLICY=IfNotPresent TARGET_RESOURCE="./config/default/manager_pull_policy.yaml"
324324
## Build the manifests
325325
$(MAKE) release-manifests clean-release-git
326326
## Build the development manifests

0 commit comments

Comments
 (0)