Skip to content
This repository was archived by the owner on Jun 12, 2023. It is now read-only.

Commit 403e726

Browse files
ksimon1MarSik
authored andcommitted
install operator-courier by default (#118)
Previously when new deploy manifests were created, script didn't do operator-courier validation if operator-courier was not installed. Now, operator-courier is installed by default and manifests are checked by it. Signed-off-by: ksimon1 <[email protected]>
1 parent d76e0ea commit 403e726

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Makefile

+4-1
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,16 @@ operator-sdk:
3232
curl -JL https://github.com/operator-framework/operator-sdk/releases/download/$(OPERATOR_SDK_VERSION)/operator-sdk-$(OPERATOR_SDK_VERSION)-x86_64-linux-gnu -o operator-sdk
3333
chmod 0755 operator-sdk
3434

35+
operator-courier:
36+
pip3 install operator-courier
37+
3538
manifests-prepare:
3639
mkdir -p _out
3740

3841
manifests-cleanup:
3942
rm -rf _out
4043

41-
manifests: csv-generator manifests-cleanup manifests-prepare operator-sdk
44+
manifests: operator-courier csv-generator manifests-cleanup manifests-prepare operator-sdk
4245
./hack/make-manifests.sh ${IMAGE_TAG}
4346
./hack/release-manifests.sh ${IMAGE_TAG}
4447

0 commit comments

Comments
 (0)