From e6104c088bf18c73fee988881647303dd58b1ab1 Mon Sep 17 00:00:00 2001 From: Rui Vieira Date: Fri, 15 Nov 2024 18:31:38 +0000 Subject: [PATCH] chore(release): Release 1.29.0 --- Makefile | 2 +- config/base/params.env | 8 ++++---- config/overlays/odh/params.env | 8 ++++---- controllers/constants/version.go | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index 57e8ae28..9f5b784a 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ # To re-generate a bundle for another specific version without changing the standard setup, you can: # - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2) # - use environment variables to overwrite this value (e.g export VERSION=0.0.2) -VERSION ?= 1.17.0 +VERSION ?= 1.29.0 BUILD_TOOL ?= podman diff --git a/config/base/params.env b/config/base/params.env index e0de8034..4722d76d 100644 --- a/config/base/params.env +++ b/config/base/params.env @@ -1,9 +1,9 @@ -trustyaiServiceImage=quay.io/trustyai/trustyai-service:latest -trustyaiOperatorImage=quay.io/trustyai/trustyai-service-operator:latest +trustyaiServiceImage=quay.io/trustyai/trustyai-service:v0.23.0 +trustyaiOperatorImage=quay.io/trustyai/trustyai-service-operator:v1.29.0 oauthProxyImage=quay.io/openshift/origin-oauth-proxy:4.14.0 kServeServerless=enabled -lmes-driver-image=quay.io/trustyai/ta-lmes-driver:latest -lmes-pod-image=quay.io/trustyai/ta-lmes-job:latest +lmes-driver-image=quay.io/trustyai/ta-lmes-driver:v1.29.0 +lmes-pod-image=quay.io/trustyai/ta-lmes-job:v1.29.0 lmes-pod-checking-interval=10s lmes-image-pull-policy=Always lmes-max-batch-size=24 diff --git a/config/overlays/odh/params.env b/config/overlays/odh/params.env index f7ff45d0..59fb44c1 100644 --- a/config/overlays/odh/params.env +++ b/config/overlays/odh/params.env @@ -1,9 +1,9 @@ -trustyaiServiceImage=quay.io/trustyai/trustyai-service:latest -trustyaiOperatorImage=quay.io/trustyai/trustyai-service-operator:latest +trustyaiServiceImage=quay.io/trustyai/trustyai-service:v0.23.0 +trustyaiOperatorImage=quay.io/trustyai/trustyai-service-operator:v1.29.0 oauthProxyImage=quay.io/openshift/origin-oauth-proxy:4.14.0 kServeServerless=enabled -lmes-driver-image=quay.io/trustyai/ta-lmes-driver:latest -lmes-pod-image=quay.io/trustyai/ta-lmes-job:latest +lmes-driver-image=quay.io/trustyai/ta-lmes-driver:v1.29.0 +lmes-pod-image=quay.io/trustyai/ta-lmes-job:v1.29.0 lmes-pod-checking-interval=10s lmes-image-pull-policy=Always lmes-max-batch-size=24 diff --git a/controllers/constants/version.go b/controllers/constants/version.go index b4646084..2123b0a8 100644 --- a/controllers/constants/version.go +++ b/controllers/constants/version.go @@ -1,6 +1,6 @@ package constants const ( - Version = "1.17.0" + Version = "1.29.0" ConfigMap = "trustyai-service-operator-config" )