Skip to content

Commit 4f6aa2e

Browse files
committed
upgrade appwrapper to v0.9.0
1 parent b5d28df commit 4f6aa2e

File tree

6 files changed

+9
-12
lines changed

6 files changed

+9
-12
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ 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.8.1
15+
APPWRAPPER_VERSION ?= v0.9.0
1616
APPWRAPPER_REPO ?= github.com/project-codeflare/appwrapper
1717
# Upstream AppWrapper is currently only creating release tags of the form `vX.Y.Z` (i.e the version)
1818
APPWRAPPER_CRD ?= ${APPWRAPPER_REPO}/config/crd?ref=${APPWRAPPER_VERSION}

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ CodeFlare Stack Compatibility Matrix
1010
|------------------------------|---------------------------------------------------------------------------------------------------|
1111
| CodeFlare Operator | [v1.4.0](https://github.com/project-codeflare/codeflare-operator/releases/tag/v1.4.0) |
1212
| 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) |
1414
| KubeRay | [v1.1.0](https://github.com/opendatahub-io/kuberay/releases/tag/v1.1.0) |
1515
<!-- Compatibility Matrix end -->
1616

+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.8.1
4+
- github.com/project-codeflare/appwrapper/config/crd?ref=v0.9.0

config/crd/crd-appwrapper.yml

+3-6
Original file line numberDiff line numberDiff line change
@@ -139,18 +139,15 @@ spec:
139139
items:
140140
description: AppWrapperPodSet describes an homogeneous set of pods
141141
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
147144
type: string
148145
replicas:
149146
description: Replicas is the number of pods in this PodSet
150147
format: int32
151148
type: integer
152149
required:
153-
- podPath
150+
- path
154151
type: object
155152
type: array
156153
template:

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require (
99
github.com/opendatahub-io/opendatahub-operator/v2 v2.10.0
1010
github.com/openshift/api v0.0.0-20230823114715-5fdd7511b790
1111
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
1313
github.com/project-codeflare/codeflare-common v0.0.0-20240422163521-380101642c8f
1414
github.com/ray-project/kuberay/ray-operator v1.1.0
1515
go.uber.org/zap v1.26.0

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -238,8 +238,8 @@ github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
238238
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
239239
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
240240
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=
243243
github.com/project-codeflare/codeflare-common v0.0.0-20240422163521-380101642c8f h1:9Uron4ej4Tt5ULX5CMzjmPqIZu3q/m07d4jhbNSwdPY=
244244
github.com/project-codeflare/codeflare-common v0.0.0-20240422163521-380101642c8f/go.mod h1:tlPi2e1HZQuf7AAFc7keWdVUNcxV+Gfh6Ss4KAQs1O0=
245245
github.com/prometheus/client_golang v1.18.0 h1:HzFfmkOzH5Q8L8G+kSJKUx5dtG87sewO+FoDDqP5Tbk=

0 commit comments

Comments
 (0)