From d38d2bd38968005d4368fc643b28e5b78551bd8f Mon Sep 17 00:00:00 2001 From: Antony Natale Date: Thu, 26 Sep 2024 15:42:44 -0400 Subject: [PATCH] updates image tag variable to leverage app interface better --- deploy/kessel-inventory.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deploy/kessel-inventory.yaml b/deploy/kessel-inventory.yaml index 899f2a7c..29c2105c 100644 --- a/deploy/kessel-inventory.yaml +++ b/deploy/kessel-inventory.yaml @@ -53,11 +53,11 @@ objects: podSpec: initContainers: - name: migration - image: ${INVENTORY_IMAGE}:${INVENTORY_IMAGE_TAG} + image: ${INVENTORY_IMAGE}:${IMAGE_TAG} command: ["inventory-api"] args: ["migrate"] inheritEnv: true - image: ${INVENTORY_IMAGE}:${INVENTORY_IMAGE_TAG} + image: ${INVENTORY_IMAGE}:${IMAGE_TAG} command: ["inventory-api"] args: ["serve"] livenessProbe: @@ -99,5 +99,5 @@ parameters: name: INVENTORY_IMAGE value: quay.io/redhat-services-prod/project-kessel-tenant/kessel-inventory/inventory-api - description: Image Tag - name: INVENTORY_IMAGE_TAG - value: latest + name: IMAGE_TAG + required: true