Skip to content

Update Kueue dependency to 0.8.3 #629

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

Closed
Closed
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
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ VERSION ?= v0.0.0-dev
BUNDLE_VERSION ?= $(VERSION:v%=%)

# APPWRAPPER_VERSION defines the default version of the AppWrapper controller
APPWRAPPER_VERSION ?= v0.27.0
APPWRAPPER_VERSION ?= cf0.27.2
APPWRAPPER_REPO ?= github.com/project-codeflare/appwrapper
APPWRAPPER_CRD ?= ${APPWRAPPER_REPO}/config/crd?ref=${APPWRAPPER_VERSION}

Expand All @@ -21,7 +21,7 @@ KUEUE_VERSION ?= v0.8.3

USE_RHOAI ?= true
# KUBERAY_VERSION defines the default version of the KubeRay operator (used for testing)
KUBERAY_VERSION ?= v1.1.0
KUBERAY_VERSION ?= v1.2.1

# RAY_VERSION defines the default version of Ray (used for testing)
RAY_VERSION ?= 2.5.0
Expand Down
2 changes: 1 addition & 1 deletion config/crd/appwrapper/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- github.com/project-codeflare/appwrapper/config/crd?ref=v0.27.0
- github.com/project-codeflare/appwrapper/config/crd?ref=cf0.27.2
14 changes: 7 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ require (
github.com/onsi/gomega v1.33.1
github.com/open-policy-agent/cert-controller v0.10.1
github.com/opendatahub-io/opendatahub-operator/v2 v2.10.0
github.com/openshift/api v0.0.0-20230823114715-5fdd7511b790
github.com/openshift/api v0.0.0-20240625084701-0689f006bcde
github.com/openshift/client-go v0.0.0-20221019143426-16aed247da5c
github.com/project-codeflare/appwrapper v0.27.0
github.com/project-codeflare/appwrapper v0.27.1-0.20241118170252-7cbccf8634cf
github.com/project-codeflare/codeflare-common v0.0.0-20240930133152-11fd6e3be6b3
github.com/ray-project/kuberay/ray-operator v1.1.1
github.com/ray-project/kuberay/ray-operator v1.2.1
go.uber.org/zap v1.27.0
golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8
k8s.io/api v0.30.2
Expand All @@ -35,11 +35,11 @@ replace go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp => go.open

replace github.com/jackc/pgx/v4 => github.com/jackc/pgx/v5 v5.5.4

// This replace directive supports the backlevel go version required by the ODH build
replace github.com/project-codeflare/appwrapper v0.27.0 => github.com/project-codeflare/appwrapper v0.27.1-0.20241105160939-f71c6326acce
// Use the ODH fork of Kueue
replace sigs.k8s.io/kueue v0.8.3 => github.com/opendatahub-io/kueue v0.8.3

// These replace directives deal with the backlevel ODH kueue version
replace sigs.k8s.io/kueue v0.8.3 => github.com/opendatahub-io/kueue v0.7.0-odh-2
// Hack to avoid picking up newer openshift/api version from kuberay 1.2.1
replace github.com/openshift/api v0.0.0-20240625084701-0689f006bcde => github.com/openshift/api v0.0.0-20230823114715-5fdd7511b790

require (
github.com/aymerick/douceur v0.2.0 // indirect
Expand Down
Loading
Loading