From 6d7d2a3fe8243809b3c3a710792c8498292e2fc3 Mon Sep 17 00:00:00 2001 From: Wainer dos Santos Moschetta Date: Fri, 21 Jul 2023 18:50:46 -0300 Subject: [PATCH] Makefile: freeze to CoCo Operator v0.7.0 Changed the `deploy` target to install the operator from v0.7.0. Signed-off-by: Wainer dos Santos Moschetta --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1d62fc786..446a01d2a 100644 --- a/Makefile +++ b/Makefile @@ -140,8 +140,8 @@ image: .git-commit ## Build and push docker image to $registry .PHONY: deploy deploy: ## Deploy cloud-api-adaptor using the operator, according to install/overlays/$(CLOUD_PROVIDER)/kustomization.yaml file. ifneq ($(CLOUD_PROVIDER),) - kubectl apply -k "github.com/confidential-containers/operator/config/default" - kubectl apply -k "github.com/confidential-containers/operator/config/samples/ccruntime/peer-pods" + kubectl apply -k "github.com/confidential-containers/operator/config/default?ref=v0.7.0" + kubectl apply -k "github.com/confidential-containers/operator/config/samples/ccruntime/peer-pods?ref=v0.7.0" kubectl apply -k install/overlays/$(CLOUD_PROVIDER) else $(error CLOUD_PROVIDER is not set)