Skip to content

Commit dc8811c

Browse files
Merge remote-tracking branch 'upstream/main'
2 parents aba93e8 + 59a1d23 commit dc8811c

File tree

7 files changed

+59
-48
lines changed

7 files changed

+59
-48
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ VERSION ?= v0.0.0-dev
1212
BUNDLE_VERSION ?= $(VERSION:v%=%)
1313

1414
# APPWRAPPER_VERSION defines the default version of the AppWrapper controller
15-
APPWRAPPER_VERSION ?= v0.24.0
15+
APPWRAPPER_VERSION ?= v0.25.0
1616
APPWRAPPER_REPO ?= github.com/project-codeflare/appwrapper
1717
APPWRAPPER_CRD ?= ${APPWRAPPER_REPO}/config/crd?ref=${APPWRAPPER_VERSION}
1818

1919
# KUEUE_VERSION defines the default version of Kueue (used for testing)
20-
KUEUE_VERSION ?= v0.7.0
20+
KUEUE_VERSION ?= v0.8.1
2121

2222
USE_RHOAI ?= true
2323
# KUBERAY_VERSION defines the default version of the KubeRay operator (used for testing)

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ CodeFlare Stack Compatibility Matrix
88

99
| Component | Version |
1010
|------------------------------|---------------------------------------------------------------------------------------------------|
11-
| CodeFlare Operator | [v1.8.0](https://github.com/project-codeflare/codeflare-operator/releases/tag/v1.8.0) |
12-
| CodeFlare-SDK | [v0.20.2](https://github.com/project-codeflare/codeflare-sdk/releases/tag/v0.20.2) |
13-
| AppWrapper | [v0.24.0](https://github.com/project-codeflare/appwrapper/releases/tag/v0.24.0) |
11+
| CodeFlare Operator | [v1.9.0](https://github.com/project-codeflare/codeflare-operator/releases/tag/v1.9.0) |
12+
| CodeFlare-SDK | [v0.21.0](https://github.com/project-codeflare/codeflare-sdk/releases/tag/v0.21.0) |
13+
| AppWrapper | [v0.25.0](https://github.com/project-codeflare/appwrapper/releases/tag/v0.25.0) |
1414
| KubeRay | [v1.1.0](https://github.com/opendatahub-io/kuberay/releases/tag/v1.1.0) |
15-
| Kueue | [v0.7.0](https://github.com/opendatahub-io/kueue/releases/tag/v0.7.0) |
15+
| Kueue | [v0.8.1](https://github.com/opendatahub-io/kueue/releases/tag/v0.8.1) |
1616
<!-- Compatibility Matrix end -->
1717

1818
## Development
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
apiVersion: kustomize.config.k8s.io/v1beta1
22
kind: Kustomization
33
resources:
4-
- github.com/project-codeflare/appwrapper/config/crd?ref=v0.24.0
4+
- github.com/project-codeflare/appwrapper/config/crd?ref=v0.25.0

config/crd/crd-appwrapper.yml

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ spec:
2626
- jsonPath: .status.conditions[?(@.type=="Unhealthy")].status
2727
name: Unhealthy
2828
type: string
29+
- jsonPath: .metadata.creationTimestamp
30+
name: Age
31+
type: date
2932
name: v1beta2
3033
schema:
3134
openAPIV3Schema:

config/manager/params.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
codeflare-operator-controller-image=quay.io/opendatahub/codeflare-operator:v1.8.0
1+
codeflare-operator-controller-image=quay.io/opendatahub/codeflare-operator:v1.9.0
22
namespace=opendatahub

go.mod

+20-16
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@ require (
1010
github.com/opendatahub-io/opendatahub-operator/v2 v2.10.0
1111
github.com/openshift/api v0.0.0-20230823114715-5fdd7511b790
1212
github.com/openshift/client-go v0.0.0-20221019143426-16aed247da5c
13-
github.com/project-codeflare/appwrapper v0.24.0
13+
github.com/project-codeflare/appwrapper v0.25.0
1414
github.com/project-codeflare/codeflare-common v0.0.0-20240628111341-56c962a09b7e
1515
github.com/ray-project/kuberay/ray-operator v1.1.1
1616
go.uber.org/zap v1.27.0
17-
golang.org/x/exp v0.0.0-20240530194437-404ba88c7ed0
17+
golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8
1818
k8s.io/api v0.30.2
19-
k8s.io/apiextensions-apiserver v0.29.2
19+
k8s.io/apiextensions-apiserver v0.29.6
2020
k8s.io/apimachinery v0.30.2
2121
k8s.io/client-go v11.0.0+incompatible
2222
k8s.io/component-base v0.29.6
23-
k8s.io/klog/v2 v2.120.1
23+
k8s.io/klog/v2 v2.130.1
2424
k8s.io/utils v0.0.0-20240502163921-fe8a2dddb1d0
25-
sigs.k8s.io/controller-runtime v0.17.3
26-
sigs.k8s.io/kueue v0.8.0
25+
sigs.k8s.io/controller-runtime v0.17.5
26+
sigs.k8s.io/kueue v0.8.1
2727
sigs.k8s.io/yaml v1.4.0
2828
)
2929

@@ -35,10 +35,13 @@ replace go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp => go.open
3535

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

38-
// These replace directives support the backlevel go version required by ODH build
39-
replace github.com/project-codeflare/appwrapper v0.24.0 => github.com/project-codeflare/appwrapper v0.24.1-0.20240828152845-bfaac68eef30
38+
// This replace directive supports the backlevel go version required by the ODH build
39+
replace github.com/project-codeflare/appwrapper v0.25.0 => github.com/project-codeflare/appwrapper v0.25.1-0.20240926155059-30a8af17b8f4
4040

41-
replace sigs.k8s.io/kueue v0.8.0 => github.com/opendatahub-io/kueue v0.7.0-odh-test
41+
// These replace directives deal with the backlevel ODH kueue version
42+
replace sigs.k8s.io/kueue v0.8.1 => github.com/opendatahub-io/kueue v0.7.0-odh-2
43+
44+
replace github.com/prometheus/common v0.57.0 => github.com/prometheus/common v0.46.0
4245

4346
require (
4447
github.com/aymerick/douceur v0.2.0 // indirect
@@ -50,7 +53,7 @@ require (
5053
github.com/distribution/reference v0.5.0 // indirect
5154
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
5255
github.com/evanphx/json-patch v5.9.0+incompatible // indirect
53-
github.com/evanphx/json-patch/v5 v5.8.0 // indirect
56+
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
5457
github.com/fsnotify/fsnotify v1.7.0 // indirect
5558
github.com/go-logr/zapr v1.3.0 // indirect
5659
github.com/go-openapi/jsonpointer v0.21.0 // indirect
@@ -73,6 +76,7 @@ require (
7376
github.com/josharian/intern v1.0.0 // indirect
7477
github.com/jpillora/backoff v1.0.0 // indirect
7578
github.com/json-iterator/go v1.1.12 // indirect
79+
github.com/klauspost/compress v1.17.9 // indirect
7680
github.com/kubeflow/training-operator v1.7.0 // indirect
7781
github.com/mailru/easyjson v0.7.7 // indirect
7882
github.com/microcosm-cc/bluemonday v1.0.18 // indirect
@@ -84,29 +88,29 @@ require (
8488
github.com/openshift-online/ocm-sdk-go v0.1.411 // indirect
8589
github.com/openshift/custom-resource-status v1.1.2 // indirect
8690
github.com/pkg/errors v0.9.1 // indirect
87-
github.com/prometheus/client_golang v1.18.0 // indirect
91+
github.com/prometheus/client_golang v1.20.2 // indirect
8892
github.com/prometheus/client_model v0.6.1 // indirect
89-
github.com/prometheus/common v0.46.0 // indirect
90-
github.com/prometheus/procfs v0.12.0 // indirect
93+
github.com/prometheus/common v0.57.0 // indirect
94+
github.com/prometheus/procfs v0.15.1 // indirect
9195
github.com/sirupsen/logrus v1.9.3 // indirect
9296
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966 // indirect
9397
github.com/spf13/pflag v1.0.5 // indirect
9498
go.uber.org/atomic v1.11.0 // indirect
9599
go.uber.org/multierr v1.11.0 // indirect
96100
golang.org/x/net v0.28.0 // indirect
97-
golang.org/x/oauth2 v0.20.0 // indirect
101+
golang.org/x/oauth2 v0.21.0 // indirect
98102
golang.org/x/sys v0.23.0 // indirect
99103
golang.org/x/term v0.23.0 // indirect
100104
golang.org/x/text v0.17.0 // indirect
101105
golang.org/x/time v0.5.0 // indirect
102106
golang.org/x/tools v0.24.0 // indirect
103107
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
104-
google.golang.org/protobuf v1.34.1 // indirect
108+
google.golang.org/protobuf v1.34.2 // indirect
105109
gopkg.in/inf.v0 v0.9.1 // indirect
106110
gopkg.in/yaml.v2 v2.4.0 // indirect
107111
gopkg.in/yaml.v3 v3.0.1 // indirect
108112
k8s.io/apiserver v0.29.6 // indirect
109-
k8s.io/kube-openapi v0.0.0-20240521193020-835d969ad83a // indirect
113+
k8s.io/kube-openapi v0.0.0-20240620174524-b456828f718b // indirect
110114
sigs.k8s.io/jobset v0.5.2 // indirect
111115
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
112116
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect

0 commit comments

Comments
 (0)