From b0a1d0ea2f0df70f554f5a93ff0c7435aa1ea846 Mon Sep 17 00:00:00 2001 From: Sam Dowell Date: Fri, 4 Nov 2022 09:45:16 -0700 Subject: [PATCH] fix: copy acm-psp from correct directory (#261) the .output/manifests directory is leftover from the legacy manifest make targets. the new manifest make targets do not create this directory, so we should copy directly from the committed manifest. --- Makefile.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.build b/Makefile.build index c1432f4fb9..303bfaa0fa 100644 --- a/Makefile.build +++ b/Makefile.build @@ -330,7 +330,7 @@ build-manifests-oss: "$(GOBIN)/addlicense" "$(GOBIN)/kustomize" $(OUTPUT_DIR) @ # Additional optional OSS manifests @ rsync \ - .output/manifests/acm-psp.yaml $(OSS_MANIFEST_STAGING_DIR)/acm-psp.yaml + manifests/acm-psp.yaml $(OSS_MANIFEST_STAGING_DIR)/acm-psp.yaml @ cat "manifests/templates/admission-webhook.yaml" \ | sed -e "s|WEBHOOK_IMAGE_NAME|$(ADMISSION_WEBHOOK_TAG)|g" \ > $(OSS_MANIFEST_STAGING_DIR)/admission-webhook.yaml