Skip to content

Commit

Permalink
ODH Release v2.11.1 (#994)
Browse files Browse the repository at this point in the history
* ODH Release v2.11.1

* Update golang.org/x/net
  • Loading branch information
VaishnaviHire committed May 1, 2024
1 parent 4d7e041 commit b2697b4
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 110 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 ?= 2.11.0
VERSION ?= 2.11.1
# IMAGE_TAG_BASE defines the opendatahub.io namespace and part of the image name for remote images.
# This variable is used to construct full image tags for bundle and catalog images.
#
Expand Down
10 changes: 5 additions & 5 deletions bundle/manifests/opendatahub-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,14 +101,14 @@ metadata:
capabilities: Full Lifecycle
categories: AI/Machine Learning, Big Data
certified: "False"
containerImage: quay.io/opendatahub/opendatahub-operator:v2.10.0
createdAt: "2024-4-22T00:00:00Z"
olm.skipRange: '>=1.0.0 <2.11.0'
containerImage: quay.io/opendatahub/opendatahub-operator:v2.11.1
createdAt: "2024-5-01T00:00:00Z"
olm.skipRange: '>=1.0.0 <2.11.1'
operators.operatorframework.io/builder: operator-sdk-v1.24.1
operators.operatorframework.io/internal-objects: '[dscinitialization.opendatahub.io]'
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
repository: https://github.com/opendatahub-io/opendatahub-operator
name: opendatahub-operator.v2.11.0
name: opendatahub-operator.v2.11.1
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -1764,7 +1764,7 @@ spec:
selector:
matchLabels:
component: opendatahub-operator
version: 2.11.0
version: 2.11.1
webhookdefinitions:
- admissionReviewVersions:
- v1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ metadata:
capabilities: Full Lifecycle
categories: AI/Machine Learning, Big Data
certified: "False"
containerImage: quay.io/opendatahub/opendatahub-operator:v2.10.0
createdAt: "2024-4-22T00:00:00Z"
olm.skipRange: '>=1.0.0 <2.11.0'
containerImage: quay.io/opendatahub/opendatahub-operator:v2.11.1
createdAt: "2024-5-01T00:00:00Z"
olm.skipRange: '>=1.0.0 <2.11.1'
operators.operatorframework.io/internal-objects: '[dscinitialization.opendatahub.io]'
repository: https://github.com/opendatahub-io/opendatahub-operator
name: opendatahub-operator.v2.11.0
Expand Down Expand Up @@ -105,4 +105,4 @@ spec:
selector:
matchLabels:
component: opendatahub-operator
version: 2.11.0
version: 2.11.1
2 changes: 1 addition & 1 deletion get_all_manifests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ declare -A COMPONENT_MANIFESTS=(
["codeflare"]="opendatahub-io:codeflare-operator:v1.4.0-odh:config:codeflare"
["ray"]="opendatahub-io:kuberay:v1.1.0-odh:ray-operator/config:ray"
["kueue"]="opendatahub-io:kueue:v0.6.2-odh:config:kueue"
["data-science-pipelines-operator"]="opendatahub-io:data-science-pipelines-operator:v2.1.0:config:data-science-pipelines-operator"
["data-science-pipelines-operator"]="opendatahub-io:data-science-pipelines-operator:v2.1.1:config:data-science-pipelines-operator"
["odh-dashboard"]="opendatahub-io:odh-dashboard:v2.22.1-incubation-release:manifests:dashboard"
["kf-notebook-controller"]="opendatahub-io:kubeflow:v1.7.0-9:components/notebook-controller/config:odh-notebook-controller/kf-notebook-controller"
["odh-notebook-controller"]="opendatahub-io:kubeflow:v1.7.0-9:components/odh-notebook-controller/config:odh-notebook-controller/odh-notebook-controller"
Expand Down
5 changes: 3 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ require (
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/net v0.21.0 // indirect
golang.org/x/oauth2 v0.17.0 // indirect
golang.org/x/sys v0.17.0 // indirect
golang.org/x/term v0.17.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/term v0.18.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/time v0.5.0 // indirect
golang.org/x/tools v0.14.0 // indirect
Expand All @@ -104,6 +104,7 @@ replace (
github.com/mattn/go-sqlite3 => github.com/mattn/go-sqlite3 v1.14.18
github.com/tektoncd/pipeline => github.com/tektoncd/pipeline v0.12.0
go.uber.org/multierr => go.uber.org/multierr v1.6.0
golang.org/x/net => golang.org/x/net v0.23.0
google.golang.org/grpc => google.golang.org/grpc v1.63.2
k8s.io/api => k8s.io/api v0.26.0
k8s.io/client-go => k8s.io/client-go v0.26.0
Expand Down

0 comments on commit b2697b4

Please sign in to comment.