Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: change release image versions #55

Merged
merged 1 commit into from
Jan 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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: gcr.io/tfx-oss-public/ml_metadata_store_server:1.14.0
- name: REST_IMAGE
value: quay.io/opendatahub/model-registry:latest
value: quay.io/opendatahub/model-registry:v0.1.0
- name: ENABLE_WEBHOOKS
value: "false"
securityContext:
Expand Down
4 changes: 2 additions & 2 deletions config/overlays/odh/params.env
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
IMAGES_MODELREGISTRY_OPERATOR=quay.io/opendatahub/model-registry-operator:latest
IMAGES_MODELREGISTRY_OPERATOR=quay.io/opendatahub/model-registry-operator:v0.1.0
IMAGES_GRPC_SERVICE=gcr.io/tfx-oss-public/ml_metadata_store_server:1.14.0
IMAGES_REST_SERVICE=quay.io/opendatahub/model-registry:latest
IMAGES_REST_SERVICE=quay.io/opendatahub/model-registry:v0.1.0
2 changes: 1 addition & 1 deletion internal/controller/config/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const (
GrpcImage = "GRPC_IMAGE"
RestImage = "REST_IMAGE"
DefaultGrpcImage = "gcr.io/tfx-oss-public/ml_metadata_store_server:1.14.0"
DefaultRestImage = "quay.io/opendatahub/model-registry:latest"
DefaultRestImage = "quay.io/opendatahub/model-registry:v0.1.0"
RouteDisabled = "disabled"
RouteEnabled = "enabled"
)
Expand Down
2 changes: 1 addition & 1 deletion internal/controller/modelregistry_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ var _ = Describe("ModelRegistry controller", func() {
By("Setting the Image ENV VARs which stores the Server images")
err = os.Setenv("GRPC_IMAGE", "gcr.io/tfx-oss-public/ml_metadata_store_server:1.14.0")
Expect(err).To(Not(HaveOccurred()))
err = os.Setenv("REST_IMAGE", "quay.io/opendatahub/model-registry:latest")
err = os.Setenv("REST_IMAGE", "quay.io/opendatahub/model-registry:v0.1.0")
Expect(err).To(Not(HaveOccurred()))

By("creating the custom resource for the Kind ModelRegistry")
Expand Down
Loading