Skip to content

Commit 1810758

Browse files
Update appwrappers to 0.27.0
Changes: * Append autopilot anti-affinities to existing matchExpressions array * Add labels to aggregate appwrapper editor/viewer role RBACs * Bump Kueue from 0.8.1 to 0.8.3
1 parent 397963f commit 1810758

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
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.26.0
15+
APPWRAPPER_VERSION ?= v0.27.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.8.1
20+
KUEUE_VERSION ?= v0.8.3
2121

2222
USE_RHOAI ?= true
2323
# KUBERAY_VERSION defines the default version of the KubeRay operator (used for testing)
+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.26.0
4+
- github.com/project-codeflare/appwrapper/config/crd?ref=v0.27.0

go.mod

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ 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.26.0
13+
github.com/project-codeflare/appwrapper v0.27.0
1414
github.com/project-codeflare/codeflare-common v0.0.0-20240930133152-11fd6e3be6b3
1515
github.com/ray-project/kuberay/ray-operator v1.1.1
1616
go.uber.org/zap v1.27.0
@@ -23,7 +23,7 @@ require (
2323
k8s.io/klog/v2 v2.130.1
2424
k8s.io/utils v0.0.0-20240502163921-fe8a2dddb1d0
2525
sigs.k8s.io/controller-runtime v0.17.5
26-
sigs.k8s.io/kueue v0.8.1
26+
sigs.k8s.io/kueue v0.8.3
2727
sigs.k8s.io/yaml v1.4.0
2828
)
2929

@@ -36,10 +36,10 @@ replace go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp => go.open
3636
replace github.com/jackc/pgx/v4 => github.com/jackc/pgx/v5 v5.5.4
3737

3838
// This replace directive supports the backlevel go version required by the ODH build
39-
replace github.com/project-codeflare/appwrapper v0.26.0 => github.com/project-codeflare/appwrapper v0.26.1-0.20241016213414-d3825c270f61
39+
replace github.com/project-codeflare/appwrapper v0.27.0 => github.com/project-codeflare/appwrapper v0.27.1-0.20241105160939-f71c6326acce
4040

4141
// 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
42+
replace sigs.k8s.io/kueue v0.8.3 => github.com/opendatahub-io/kueue v0.7.0-odh-2
4343

4444
require (
4545
github.com/aymerick/douceur v0.2.0 // indirect

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -247,8 +247,8 @@ github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
247247
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
248248
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
249249
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
250-
github.com/project-codeflare/appwrapper v0.26.1-0.20241016213414-d3825c270f61 h1:jSqZDG4RihAkBaQp2fYFbp6EO4EGMv0pxfvO+6C2Cis=
251-
github.com/project-codeflare/appwrapper v0.26.1-0.20241016213414-d3825c270f61/go.mod h1:zDALq3/gn+eiczpD7TBZWWbAVuwcCGDFuN/77oh+CDw=
250+
github.com/project-codeflare/appwrapper v0.27.1-0.20241105160939-f71c6326acce h1:fFxewNcpKzvxYfJdwmHjJswoupX+5u1o9U3P8Gfh49o=
251+
github.com/project-codeflare/appwrapper v0.27.1-0.20241105160939-f71c6326acce/go.mod h1:CDh8V/IGrfT9UW1CWGZNZQmb/5PNK8VGzZsiUL8ywlo=
252252
github.com/project-codeflare/codeflare-common v0.0.0-20240930133152-11fd6e3be6b3 h1:Eupu9yxaGTddtoxb9SjrYJlokRHEYU5NNVRQmdXSNVs=
253253
github.com/project-codeflare/codeflare-common v0.0.0-20240930133152-11fd6e3be6b3/go.mod h1:v7XKwaDoCspsHQlWJNarO7gOpR+iumSS+c1bWs3kJOI=
254254
github.com/prometheus/client_golang v1.20.4 h1:Tgh3Yr67PaOv/uTqloMsCEdeuFTatm5zIq5+qNN23vI=

0 commit comments

Comments
 (0)