Skip to content

Commit

Permalink
chore: change release image versions (#116)
Browse files Browse the repository at this point in the history
Signed-off-by: tarilabs <[email protected]>
  • Loading branch information
tarilabs authored Jul 13, 2024
1 parent 15a9698 commit 6e73f72
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 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.3
- 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,4 +1,4 @@
IMAGES_MODELREGISTRY_OPERATOR=quay.io/opendatahub/model-registry-operator:latest
IMAGES_MODELREGISTRY_OPERATOR=quay.io/opendatahub/model-registry-operator:v0.2.3
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.3
CREATE_AUTH_RESOURCES=true
5 changes: 3 additions & 2 deletions internal/controller/config/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@ package config

import (
"embed"
"text/template"

"github.com/spf13/viper"
v1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/resource"
"text/template"
)

//go:embed templates/*.yaml.tmpl
Expand All @@ -32,7 +33,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.3"
RouteDisabled = "disabled"
RouteEnabled = "enabled"
)
Expand Down

0 comments on commit 6e73f72

Please sign in to comment.