From 23f69c64e97d9f8baa2347177ea4ffc2effdab51 Mon Sep 17 00:00:00 2001 From: stevenhorsman Date: Mon, 13 Nov 2023 12:42:23 +0000 Subject: [PATCH] Makefile: Pin to 0.8.0 release of operator Fix deploy target to install the operator from the v0.8.0 branch Signed-off-by: stevenhorsman --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7de2c11c9..4a5c8b9de 100644 --- a/Makefile +++ b/Makefile @@ -165,8 +165,8 @@ image-with-arch: .git-commit ## Build the per arch image .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.8.0" + kubectl apply -k "github.com/confidential-containers/operator/config/samples/ccruntime/peer-pods?ref=v0.8.0" kubectl apply -k install/overlays/$(CLOUD_PROVIDER) else $(error CLOUD_PROVIDER is not set)