File tree 6 files changed +9
-12
lines changed
6 files changed +9
-12
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ VERSION ?= v0.0.0-dev
12
12
BUNDLE_VERSION ?= $(VERSION:v%=% )
13
13
14
14
# APPWRAPPER_VERSION defines the default version of the AppWrapper controller
15
- APPWRAPPER_VERSION ?= v0.8.1
15
+ APPWRAPPER_VERSION ?= v0.9.0
16
16
APPWRAPPER_REPO ?= github.com/project-codeflare/appwrapper
17
17
# Upstream AppWrapper is currently only creating release tags of the form `vX.Y.Z` (i.e the version)
18
18
APPWRAPPER_CRD ?= ${APPWRAPPER_REPO}/config/crd?ref=${APPWRAPPER_VERSION}
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ CodeFlare Stack Compatibility Matrix
10
10
| ------------------------------| ---------------------------------------------------------------------------------------------------|
11
11
| CodeFlare Operator | [ v1.4.0] ( https://github.com/project-codeflare/codeflare-operator/releases/tag/v1.4.0 ) |
12
12
| CodeFlare-SDK | [ v0.16.0] ( https://github.com/project-codeflare/codeflare-sdk/releases/tag/v0.16.0 ) |
13
- | AppWrapper | [ v0.8.1 ] ( https://github.com/project-codeflare/appwrapper/releases/tag/v0.8.1 ) |
13
+ | AppWrapper | [ v0.9.0 ] ( https://github.com/project-codeflare/appwrapper/releases/tag/v0.9.0 ) |
14
14
| KubeRay | [ v1.1.0] ( https://github.com/opendatahub-io/kuberay/releases/tag/v1.1.0 ) |
15
15
<!-- Compatibility Matrix end -->
16
16
Original file line number Diff line number Diff line change 1
1
apiVersion : kustomize.config.k8s.io/v1beta1
2
2
kind : Kustomization
3
3
resources :
4
- - github.com/project-codeflare/appwrapper/config/crd?ref=v0.8.1
4
+ - github.com/project-codeflare/appwrapper/config/crd?ref=v0.9.0
Original file line number Diff line number Diff line change @@ -139,18 +139,15 @@ spec:
139
139
items :
140
140
description : AppWrapperPodSet describes an homogeneous set of pods
141
141
properties :
142
- podPath :
143
- description : PodPath is the path Component.Template to the PodTemplateSpec for this PodSet
144
- type : string
145
- replicaPath :
146
- description : ReplicaPath is the path within Component.Template to the replica count for this PodSet
142
+ path :
143
+ description : Path is the path Component.Template to the PodTemplateSpec for this PodSet
147
144
type : string
148
145
replicas :
149
146
description : Replicas is the number of pods in this PodSet
150
147
format : int32
151
148
type : integer
152
149
required :
153
- - podPath
150
+ - path
154
151
type : object
155
152
type : array
156
153
template :
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ require (
9
9
github.com/opendatahub-io/opendatahub-operator/v2 v2.10.0
10
10
github.com/openshift/api v0.0.0-20230823114715-5fdd7511b790
11
11
github.com/openshift/client-go v0.0.0-20221019143426-16aed247da5c
12
- github.com/project-codeflare/appwrapper v0.8.1
12
+ github.com/project-codeflare/appwrapper v0.9.0
13
13
github.com/project-codeflare/codeflare-common v0.0.0-20240422163521-380101642c8f
14
14
github.com/ray-project/kuberay/ray-operator v1.1.0
15
15
go.uber.org/zap v1.26.0
Original file line number Diff line number Diff line change @@ -238,8 +238,8 @@ github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
238
238
github.com/pkg/errors v0.9.1 /go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0 =
239
239
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM =
240
240
github.com/pmezard/go-difflib v1.0.0 /go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4 =
241
- github.com/project-codeflare/appwrapper v0.8.1 h1:o3nbd5L7Zn7sorXQ3rOR2EW9ESq4XoAQlp+kDLPQ0Hc =
242
- github.com/project-codeflare/appwrapper v0.8.1 /go.mod h1:FMQ2lI3fz6LakUVXgN1FTdpsc3BBkNIZZgtMmM9J5UM =
241
+ github.com/project-codeflare/appwrapper v0.9.0 h1:iQq91Fp3FWYsLgr4XvSTp2asfrItG/BAZ5Zfh50CzyQ =
242
+ github.com/project-codeflare/appwrapper v0.9.0 /go.mod h1:FMQ2lI3fz6LakUVXgN1FTdpsc3BBkNIZZgtMmM9J5UM =
243
243
github.com/project-codeflare/codeflare-common v0.0.0-20240422163521-380101642c8f h1:9Uron4ej4Tt5ULX5CMzjmPqIZu3q/m07d4jhbNSwdPY =
244
244
github.com/project-codeflare/codeflare-common v0.0.0-20240422163521-380101642c8f /go.mod h1:tlPi2e1HZQuf7AAFc7keWdVUNcxV+Gfh6Ss4KAQs1O0 =
245
245
github.com/prometheus/client_golang v1.18.0 h1:HzFfmkOzH5Q8L8G+kSJKUx5dtG87sewO+FoDDqP5Tbk =
You can’t perform that action at this time.
0 commit comments