From df293fb009f7e1d8e8151717333060c4bc405ba0 Mon Sep 17 00:00:00 2001 From: Rui Vieira Date: Wed, 15 Jan 2025 15:48:56 +0000 Subject: [PATCH] chore(release): Release v1.31.0/v0.25.0 (#387) --- Makefile | 2 +- config/base/params.env | 8 ++++---- config/component_metadata.yaml | 8 ++++---- config/overlays/odh/params.env | 8 ++++---- controllers/constants/version.go | 2 +- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Makefile b/Makefile index 57e8ae28..41e787c3 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.31.0 BUILD_TOOL ?= podman diff --git a/config/base/params.env b/config/base/params.env index 012ff304..0473f642 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.25.0 +trustyaiOperatorImage=quay.io/trustyai/trustyai-service-operator:v1.31.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.31.0 +lmes-pod-image=quay.io/trustyai/ta-lmes-job:v1.31.0 lmes-pod-checking-interval=10s lmes-image-pull-policy=Always lmes-max-batch-size=24 diff --git a/config/component_metadata.yaml b/config/component_metadata.yaml index e53985dc..4230ac7f 100644 --- a/config/component_metadata.yaml +++ b/config/component_metadata.yaml @@ -1,13 +1,13 @@ releases: - name: TrustyAI operator - version: latest + version: 1.31.0 repoUrl: https://github.com/trustyai-explainability/trustyai-service-operator - name: TrustyAI service - version: latest + version: 0.25.0 repoUrl: https://github.com/trustyai-explainability/trustyai-explainability - name: TrustyAI LMEval driver - version: latest + version: 1.31.0 repoUrl: https://github.com/trustyai-explainability/trustyai-service-operator - name: TrustyAI LMEval job - version: latest + version: 1.31.0 repoUrl: https://github.com/opendatahub-io/lm-evaluation-harness diff --git a/config/overlays/odh/params.env b/config/overlays/odh/params.env index 012ff304..0473f642 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.25.0 +trustyaiOperatorImage=quay.io/trustyai/trustyai-service-operator:v1.31.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.31.0 +lmes-pod-image=quay.io/trustyai/ta-lmes-job:v1.31.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..15b30912 100644 --- a/controllers/constants/version.go +++ b/controllers/constants/version.go @@ -1,6 +1,6 @@ package constants const ( - Version = "1.17.0" + Version = "1.31.0" ConfigMap = "trustyai-service-operator-config" )