Skip to content

Commit f3244f7

Browse files
Add runtime extension components to release
Signed-off-by: killianmuldoon <[email protected]>
1 parent 5d980e8 commit f3244f7

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -881,6 +881,11 @@ manifest-modification-dev: # Set the manifest images to the staging bucket.
881881
MANIFEST_IMG=$(REGISTRY)/$(CAPD_IMAGE_NAME) MANIFEST_TAG=$(RELEASE_TAG) \
882882
TARGET_RESOURCE="$(CAPD_DIR)/config/default/manager_image_patch.yaml"
883883
$(MAKE) set-manifest-pull-policy PULL_POLICY=IfNotPresent TARGET_RESOURCE="$(CAPD_DIR)/config/default/manager_pull_policy.yaml"
884+
$(MAKE) set-manifest-image \
885+
MANIFEST_IMG=$(REGISTRY)/$(TEST_EXTENSION_IMAGE_NAME) MANIFEST_TAG=$(RELEASE_TAG) \
886+
TARGET_RESOURCE="$(TEST_EXTENSION_DIR)/config/default/manager_image_patch.yaml"
887+
$(MAKE) set-manifest-pull-policy PULL_POLICY=IfNotPresent TARGET_RESOURCE="$(CAPD_DIR)/config/default/manager_pull_policy.yaml"
888+
884889

885890

886891
.PHONY: release-manifests
@@ -908,6 +913,9 @@ release-manifests: $(RELEASE_DIR) $(KUSTOMIZE) $(RUNTIME_OPENAPI_GEN) ## Build t
908913
release-manifests-dev: $(RELEASE_DIR) $(KUSTOMIZE) ## Build the development manifests and copies them in the release folder
909914
cd $(CAPD_DIR); $(KUSTOMIZE) build config/default > ../../../$(RELEASE_DIR)/infrastructure-components-development.yaml
910915
cp $(CAPD_DIR)/templates/* $(RELEASE_DIR)/
916+
cd $(TEST_EXTENSION_DIR); $(KUSTOMIZE) build config/default > ../../$(RELEASE_DIR)/runtime-extension-components-development.yaml
917+
cp $(CAPD_DIR)/templates/* $(RELEASE_DIR)/
918+
911919

912920
.PHONY: release-binaries
913921
release-binaries: ## Build the binaries to publish with a release

0 commit comments

Comments
 (0)