Skip to content

Commit 4334337

Browse files
committed
review comments
1 parent 58c65aa commit 4334337

13 files changed

+65
-319
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.7.2
15+
APPWRAPPER_VERSION ?= v0.7.3
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
@@ -9,7 +9,7 @@ CodeFlare Stack Compatibility Matrix
99
| Component | Version |
1010
|--------------------------|------------------------------------------------------------------------------------------|
1111
| CodeFlare Operator | [v1.2.0](https://github.com/project-codeflare/codeflare-operator/releases/tag/v1.2.0) |
12-
| AppWrapper | [v0.7.2](https://github.com/project-codeflare/appwrapper/releases/tag/v0.7.2) |
12+
| AppWrapper | [v0.7.3](https://github.com/project-codeflare/appwrapper/releases/tag/v0.7.3) |
1313
| CodeFlare-SDK | [v0.14.0](https://github.com/project-codeflare/codeflare-sdk/releases/tag/v0.14.0) |
1414
| KubeRay | [v1.0.0](https://github.com/opendatahub-io/kuberay/releases/tag/v1.0.0) |
1515
<!-- Compatibility Matrix end -->
+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.7.2
4+
- github.com/project-codeflare/appwrapper/config/crd?ref=v0.7.3

config/rbac/kustomization.yaml

-4
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,7 @@ resources:
77
- admin_role.yaml
88
- editor_role.yaml
99
- service_account.yaml
10-
- mcad_manager_role.yaml
11-
- mcad_manager_role_binding.yaml
1210
- role.yaml
1311
- role_binding.yaml
1412
- leader_election_role.yaml
1513
- leader_election_role_binding.yaml
16-
- mcad-controller-ray-clusterrolebinding.yaml
17-
- mcad-controller-ray-clusterrole.yaml

config/rbac/mcad-controller-ray-clusterrole.yaml

-43
This file was deleted.

config/rbac/mcad-controller-ray-clusterrolebinding.yaml

-12
This file was deleted.

config/rbac/mcad_manager_role.yaml

-223
This file was deleted.

config/rbac/mcad_manager_role_binding.yaml

-12
This file was deleted.

go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ go 1.21
55
require (
66
github.com/onsi/ginkgo/v2 v2.15.0
77
github.com/onsi/gomega v1.31.1
8+
github.com/open-policy-agent/cert-controller v0.10.1
89
github.com/openshift/api v0.0.0-20230213134911-7ba313770556
910
github.com/openshift/client-go v0.0.0-20221019143426-16aed247da5c
10-
github.com/project-codeflare/appwrapper v0.7.2
11+
github.com/project-codeflare/appwrapper v0.7.3
1112
github.com/project-codeflare/codeflare-common v0.0.0-20240404131119-10cc4982cd0e
1213
github.com/ray-project/kuberay/ray-operator v1.1.0
1314
go.uber.org/zap v1.26.0
@@ -61,7 +62,6 @@ require (
6162
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
6263
github.com/modern-go/reflect2 v1.0.2 // indirect
6364
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
64-
github.com/open-policy-agent/cert-controller v0.10.1 // indirect
6565
github.com/openshift-online/ocm-sdk-go v0.1.368 // indirect
6666
github.com/pkg/errors v0.9.1 // indirect
6767
github.com/prometheus/client_golang v1.18.0 // indirect

go.sum

+2-4
Original file line numberDiff line numberDiff line change
@@ -341,10 +341,8 @@ github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
341341
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
342342
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
343343
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
344-
github.com/project-codeflare/appwrapper v0.7.2 h1:VTApjW6mTGZbuPasugcsWhCb5jnZG/Hk897tNJdskWQ=
345-
github.com/project-codeflare/appwrapper v0.7.2/go.mod h1:f4SYPB6sPteegtekwD4bjPdpWZ+nFlLF2Eoz9iyw73s=
346-
github.com/project-codeflare/codeflare-common v0.0.0-20240328182412-38df643db183 h1:WOy8nuzZ3zGLVxj2evwfSkTj5SLMVCX5rbI7J5NZxOg=
347-
github.com/project-codeflare/codeflare-common v0.0.0-20240328182412-38df643db183/go.mod h1:ebDcLOZsMe3t9JvUGAv4By2ttu+7NenSpAQZUAaYUak=
344+
github.com/project-codeflare/appwrapper v0.7.3 h1:OYz4x3ymsHC26nrfq6iikp0iF78dPJfx/VzLFP1EE4Y=
345+
github.com/project-codeflare/appwrapper v0.7.3/go.mod h1:f4SYPB6sPteegtekwD4bjPdpWZ+nFlLF2Eoz9iyw73s=
348346
github.com/project-codeflare/codeflare-common v0.0.0-20240404131119-10cc4982cd0e h1:ucvjQJ+UVCAqdxFJlgLhNxDwvuiZcT+Li73xbCPHH8I=
349347
github.com/project-codeflare/codeflare-common v0.0.0-20240404131119-10cc4982cd0e/go.mod h1:ebDcLOZsMe3t9JvUGAv4By2ttu+7NenSpAQZUAaYUak=
350348
github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw=

0 commit comments

Comments
 (0)