From 125063f0a43261da44e3427520ceb8d21a7753cc Mon Sep 17 00:00:00 2001 From: Ben Oukhanov Date: Mon, 26 Jun 2023 14:02:52 +0300 Subject: [PATCH] fix(CNV-30284): rename tekton images env vars Rename Tekton environment variables to be the same as declared in CSV. Currently, they are not the same as in CSV and no value is set. Signed-off-by: Ben Oukhanov --- internal/common/environment.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/common/environment.go b/internal/common/environment.go index c2492b89b..93df91ffc 100644 --- a/internal/common/environment.go +++ b/internal/common/environment.go @@ -18,8 +18,8 @@ import ( const ( OperatorVersionKey = "OPERATOR_VERSION" TemplateValidatorImageKey = "VALIDATOR_IMAGE" - TektonTasksImageKey = "TEKTON_TASKS_IMG" - TektonTasksDiskVirtImageKey = "TEKTON_TASKS_DISK_VIRT_IMG" + TektonTasksImageKey = "TEKTON_TASKS_IMAGE" + TektonTasksDiskVirtImageKey = "TEKTON_TASKS_DISK_VIRT_IMAGE" VirtioImageKey = "VIRTIO_IMG" DefaultTektonTasksIMG = "quay.io/kubevirt/tekton-tasks:" + TektonTasksVersion