Skip to content

Commit 9c6dcbf

Browse files
Merge remote-tracking branch 'pcf-cfo/main' into sync-odhcfo-sep3
2 parents ff6b223 + 7f00118 commit 9c6dcbf

File tree

15 files changed

+454
-184
lines changed

15 files changed

+454
-184
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
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.23.0
15+
APPWRAPPER_VERSION ?= v0.24.0
1616
APPWRAPPER_REPO ?= github.com/project-codeflare/appwrapper
1717
APPWRAPPER_CRD ?= ${APPWRAPPER_REPO}/config/crd?ref=${APPWRAPPER_VERSION}
1818

@@ -245,7 +245,7 @@ GH_CLI ?= $(LOCALBIN)/gh
245245
SED ?= /usr/bin/sed
246246

247247
## Tool Versions
248-
KUSTOMIZE_VERSION ?= v4.5.4
248+
KUSTOMIZE_VERSION ?= v5.4.3
249249
CODEGEN_VERSION ?= v0.27.2
250250
CONTROLLER_TOOLS_VERSION ?= v0.9.2
251251
YQ_VERSION ?= v4.35.2 ## latest version that works with go1.20

OWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ approvers:
55
- kpostoffice
66
- sutaakar
77
- tedhtchang
8+
- varshaprasad96
89

910
reviewers:
1011
- astefanutti
@@ -16,6 +17,7 @@ reviewers:
1617
- kpostoffice
1718
- sutaakar
1819
- tedhtchang
20+
- varshaprasad96
1921

2022
emeritus_approvers:
2123
- anishasthana # 2024-07-02
Lines changed: 1 addition & 1 deletion
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.23.0
4+
- github.com/project-codeflare/appwrapper/config/crd?ref=v0.24.0

config/default/kustomization.yaml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,19 @@ namespace: opendatahub
99
namePrefix: codeflare-operator-
1010

1111
# Labels to add to all resources and selectors.
12-
commonLabels:
13-
app.kubernetes.io/name: codeflare-operator
14-
app.kubernetes.io/part-of: codeflare
15-
16-
bases:
12+
labels:
13+
- pairs:
14+
app.kubernetes.io/name: codeflare-operator
15+
app.kubernetes.io/part-of: codeflare
16+
includeSelectors: true
17+
resources:
1718
- ../crd
1819
- ../rbac
1920
- ../manager
2021
- ../webhook
22+
- metrics_service.yaml
2123
# [PROMETHEUS] To enable prometheus monitor, uncomment all sections with 'PROMETHEUS'.
2224
# - ../prometheus
2325

24-
resources:
25-
- metrics_service.yaml
26-
2726
patches:
2827
- path: manager_webhook_patch.yaml

config/e2e/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
namespace: openshift-operators
22

3-
bases:
3+
resources:
44
- config.yaml
55
- ../default
66

config/manager/kustomization.yaml

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,15 @@ configMapGenerator:
1111
configurations:
1212
- params.yaml
1313

14-
vars:
15-
- name: namespace
16-
objref:
14+
replacements:
15+
- source:
1716
kind: ConfigMap
1817
name: stack-config
19-
apiVersion: v1
20-
fieldref:
21-
fieldpath: data.namespace
22-
- name: codeflare_operator_controller_image
23-
objref:
24-
kind: ConfigMap
25-
name: stack-config
26-
apiVersion: v1
27-
fieldref:
28-
fieldpath: data.codeflare-operator-controller-image
18+
version: v1
19+
fieldPath: data.codeflare-operator-controller-image
20+
targets:
21+
- select:
22+
kind: Deployment
23+
name: manager
24+
fieldPaths:
25+
- spec.template.spec.containers.0.image

config/scorecard/kustomization.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
resources:
22
- bases/config.yaml
3-
patchesJson6902:
3+
patches:
44
- path: patches/basic.config.yaml
55
target:
66
group: scorecard.operatorframework.io
@@ -13,4 +13,4 @@ patchesJson6902:
1313
version: v1alpha3
1414
kind: Configuration
1515
name: config
16-
#+kubebuilder:scaffold:patchesJson6902
16+
#+kubebuilder:scaffold:patches

go.mod

Lines changed: 27 additions & 28 deletions
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.23.0
13+
github.com/project-codeflare/appwrapper v0.24.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-20231006140011-7918f672742d
18-
k8s.io/api v0.30.1
17+
golang.org/x/exp v0.0.0-20240530194437-404ba88c7ed0
18+
k8s.io/api v0.30.2
1919
k8s.io/apiextensions-apiserver v0.29.2
20-
k8s.io/apimachinery v0.30.1
20+
k8s.io/apimachinery v0.30.2
2121
k8s.io/client-go v11.0.0+incompatible
22-
k8s.io/component-base v0.29.5
22+
k8s.io/component-base v0.29.6
2323
k8s.io/klog/v2 v2.120.1
24-
k8s.io/utils v0.0.0-20240102154912-e7106e64919e
24+
k8s.io/utils v0.0.0-20240502163921-fe8a2dddb1d0
2525
sigs.k8s.io/controller-runtime v0.17.3
26-
sigs.k8s.io/kueue v0.7.1
26+
sigs.k8s.io/kueue v0.8.0
2727
sigs.k8s.io/yaml v1.4.0
2828
)
2929

@@ -36,26 +36,26 @@ 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
// These replace directives support the backlevel go version required by ODH build
39-
replace github.com/project-codeflare/appwrapper v0.23.0 => github.com/project-codeflare/appwrapper v0.23.1-0.20240731154950-ad486fb7e7ee
39+
replace github.com/project-codeflare/appwrapper v0.24.0 => github.com/project-codeflare/appwrapper v0.24.1-0.20240828152845-bfaac68eef30
4040

41-
replace sigs.k8s.io/kueue v0.7.1 => github.com/opendatahub-io/kueue v0.7.0-odh-test
41+
replace sigs.k8s.io/kueue v0.8.0 => github.com/opendatahub-io/kueue v0.7.0-odh-test
4242

4343
require (
4444
github.com/aymerick/douceur v0.2.0 // indirect
4545
github.com/beorn7/perks v1.0.1 // indirect
4646
github.com/blang/semver/v4 v4.0.0 // indirect
47-
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
48-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
47+
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
48+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
4949
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
5050
github.com/distribution/reference v0.5.0 // indirect
51-
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
52-
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
51+
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
52+
github.com/evanphx/json-patch v5.9.0+incompatible // indirect
5353
github.com/evanphx/json-patch/v5 v5.8.0 // indirect
5454
github.com/fsnotify/fsnotify v1.7.0 // indirect
5555
github.com/go-logr/zapr v1.3.0 // indirect
56-
github.com/go-openapi/jsonpointer v0.20.0 // indirect
57-
github.com/go-openapi/jsonreference v0.20.2 // indirect
58-
github.com/go-openapi/swag v0.22.4 // indirect
56+
github.com/go-openapi/jsonpointer v0.21.0 // indirect
57+
github.com/go-openapi/jsonreference v0.21.0 // indirect
58+
github.com/go-openapi/swag v0.23.0 // indirect
5959
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
6060
github.com/gogo/protobuf v1.3.2 // indirect
6161
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
@@ -93,22 +93,21 @@ require (
9393
github.com/spf13/pflag v1.0.5 // indirect
9494
go.uber.org/atomic v1.11.0 // indirect
9595
go.uber.org/multierr v1.11.0 // indirect
96-
golang.org/x/net v0.25.0 // indirect
97-
golang.org/x/oauth2 v0.16.0 // indirect
98-
golang.org/x/sys v0.20.0 // indirect
99-
golang.org/x/term v0.20.0 // indirect
100-
golang.org/x/text v0.15.0 // indirect
101-
golang.org/x/time v0.3.0 // indirect
102-
golang.org/x/tools v0.21.0 // indirect
96+
golang.org/x/net v0.28.0 // indirect
97+
golang.org/x/oauth2 v0.20.0 // indirect
98+
golang.org/x/sys v0.23.0 // indirect
99+
golang.org/x/term v0.23.0 // indirect
100+
golang.org/x/text v0.17.0 // indirect
101+
golang.org/x/time v0.5.0 // indirect
102+
golang.org/x/tools v0.24.0 // indirect
103103
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
104-
google.golang.org/appengine v1.6.8 // indirect
105-
google.golang.org/protobuf v1.33.0 // indirect
104+
google.golang.org/protobuf v1.34.1 // indirect
106105
gopkg.in/inf.v0 v0.9.1 // indirect
107106
gopkg.in/yaml.v2 v2.4.0 // indirect
108107
gopkg.in/yaml.v3 v3.0.1 // indirect
109-
k8s.io/apiserver v0.29.5 // indirect
110-
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
111-
sigs.k8s.io/jobset v0.5.1 // indirect
108+
k8s.io/apiserver v0.29.6 // indirect
109+
k8s.io/kube-openapi v0.0.0-20240521193020-835d969ad83a // indirect
110+
sigs.k8s.io/jobset v0.5.2 // indirect
112111
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
113112
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
114113
)

0 commit comments

Comments
 (0)