Skip to content

Commit

Permalink
chore: change release image versions for v0.2.13
Browse files Browse the repository at this point in the history
Signed-off-by: tarilabs <matteo.mortari@gmail.com>
  • Loading branch information
tarilabs authored and dhirajsb committed Feb 4, 2025
1 parent 3d0d4b6 commit afbb0a7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ spec:
- name: GRPC_IMAGE
value: quay.io/opendatahub/mlmd-grpc-server:latest
- name: REST_IMAGE
value: quay.io/opendatahub/model-registry:latest
value: quay.io/opendatahub/model-registry:v0.2.13
- name: ENABLE_WEBHOOKS
value: "false"
- name: CREATE_AUTH_RESOURCES
Expand Down
4 changes: 2 additions & 2 deletions config/overlays/odh/params.env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
IMAGES_MODELREGISTRY_OPERATOR=quay.io/opendatahub/model-registry-operator:latest
IMAGES_MODELREGISTRY_OPERATOR=quay.io/opendatahub/model-registry-operator:v0.2.13
IMAGES_GRPC_SERVICE=quay.io/opendatahub/mlmd-grpc-server:latest
IMAGES_REST_SERVICE=quay.io/opendatahub/model-registry:latest
IMAGES_REST_SERVICE=quay.io/opendatahub/model-registry:v0.2.13
CREATE_AUTH_RESOURCES=true
DEFAULT_CERT=
7 changes: 4 additions & 3 deletions internal/controller/config/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,16 @@ package config
import (
"context"
"embed"
"strings"
"text/template"

configv1 "github.com/openshift/api/config/v1"
"github.com/spf13/viper"
v1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/resource"
"k8s.io/apimachinery/pkg/types"
"sigs.k8s.io/controller-runtime/pkg/client"
klog "sigs.k8s.io/controller-runtime/pkg/log"
"strings"
"text/template"
)

//go:embed templates/*.yaml.tmpl
Expand All @@ -38,7 +39,7 @@ const (
GrpcImage = "GRPC_IMAGE"
RestImage = "REST_IMAGE"
DefaultGrpcImage = "quay.io/opendatahub/mlmd-grpc-server:latest"
DefaultRestImage = "quay.io/opendatahub/model-registry:latest"
DefaultRestImage = "quay.io/opendatahub/model-registry:v0.2.13"
RouteDisabled = "disabled"
RouteEnabled = "enabled"

Expand Down

0 comments on commit afbb0a7

Please sign in to comment.