Skip to content

Commit 1f34806

Browse files
authored
deps: uplift controller_gen and envtest version (opendatahub-io#1198)
- regenerate code and manifests - checkin new external crd Signed-off-by: Wen Zhou <[email protected]>
1 parent 4c411a6 commit 1f34806

32 files changed

+1026
-2160
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,13 @@ CRD_REF_DOCS ?= $(LOCALBIN)/crd-ref-docs
6666
YQ ?= $(LOCALBIN)/yq
6767
## Tool Versions
6868
KUSTOMIZE_VERSION ?= v5.0.2
69-
CONTROLLER_GEN_VERSION ?= v0.9.2
69+
CONTROLLER_GEN_VERSION ?= v0.16.1
7070
OPERATOR_SDK_VERSION ?= v1.31.0
7171
GOLANGCI_LINT_VERSION ?= v1.60.2
7272
YQ_VERSION ?= v4.12.2
7373
# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
74-
ENVTEST_K8S_VERSION = 1.24.2
75-
ENVTEST_PACKAGE_VERSION = v0.0.0-20240320141353-395cfc7486e6
74+
ENVTEST_K8S_VERSION = 1.31.0
75+
ENVTEST_PACKAGE_VERSION = v0.0.0-20240813183042-b901db121e1f
7676
CRD_REF_DOCS_VERSION = 0.0.11
7777

7878
# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)

apis/datasciencecluster/v1/zz_generated.deepcopy.go

-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apis/dscinitialization/v1/zz_generated.deepcopy.go

-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apis/features/v1/zz_generated.deepcopy.go

-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apis/infrastructure/v1/zz_generated.deepcopy.go

-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundle/manifests/datasciencecluster.opendatahub.io_datascienceclusters.yaml

+177-170
Large diffs are not rendered by default.

bundle/manifests/dscinitialization.opendatahub.io_dscinitializations.yaml

+83-91
Large diffs are not rendered by default.

bundle/manifests/features.opendatahub.io_featuretrackers.yaml

+25-19
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: apiextensions.k8s.io/v1
22
kind: CustomResourceDefinition
33
metadata:
44
annotations:
5-
controller-gen.kubebuilder.io/version: v0.9.2
5+
controller-gen.kubebuilder.io/version: v0.16.1
66
creationTimestamp: null
77
name: featuretrackers.features.opendatahub.io
88
spec:
@@ -17,24 +17,29 @@ spec:
1717
- name: v1
1818
schema:
1919
openAPIV3Schema:
20-
description: FeatureTracker represents a cluster-scoped resource in the Data
21-
Science Cluster, specifically designed for monitoring and managing objects
22-
created via the internal Features API. This resource serves a crucial role
23-
in cross-namespace resource management, acting as an owner reference for
24-
various resources. The primary purpose of the FeatureTracker is to enable
25-
efficient garbage collection by Kubernetes. This is essential for ensuring
26-
that resources are automatically cleaned up and reclaimed when they are
20+
description: |-
21+
FeatureTracker represents a cluster-scoped resource in the Data Science Cluster,
22+
specifically designed for monitoring and managing objects created via the internal Features API.
23+
This resource serves a crucial role in cross-namespace resource management, acting as
24+
an owner reference for various resources. The primary purpose of the FeatureTracker
25+
is to enable efficient garbage collection by Kubernetes. This is essential for
26+
ensuring that resources are automatically cleaned up and reclaimed when they are
2727
no longer required.
2828
properties:
2929
apiVersion:
30-
description: 'APIVersion defines the versioned schema of this representation
31-
of an object. Servers should convert recognized schemas to the latest
32-
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
30+
description: |-
31+
APIVersion defines the versioned schema of this representation of an object.
32+
Servers should convert recognized schemas to the latest internal value, and
33+
may reject unrecognized values.
34+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
3335
type: string
3436
kind:
35-
description: 'Kind is a string value representing the REST resource this
36-
object represents. Servers may infer this from the endpoint the client
37-
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
37+
description: |-
38+
Kind is a string value representing the REST resource this object represents.
39+
Servers may infer this from the endpoint the client submits requests to.
40+
Cannot be updated.
41+
In CamelCase.
42+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
3843
type: string
3944
metadata:
4045
type: object
@@ -58,8 +63,9 @@ spec:
5863
properties:
5964
conditions:
6065
items:
61-
description: Condition represents the state of the operator's reconciliation
62-
functionality.
66+
description: |-
67+
Condition represents the state of the operator's
68+
reconciliation functionality.
6369
properties:
6470
lastHeartbeatTime:
6571
format: date-time
@@ -83,9 +89,9 @@ spec:
8389
type: object
8490
type: array
8591
phase:
86-
description: Phase describes the Phase of FeatureTracker reconciliation
87-
state. This is used by OLM UI to provide status information to the
88-
user.
92+
description: |-
93+
Phase describes the Phase of FeatureTracker reconciliation state.
94+
This is used by OLM UI to provide status information to the user.
8995
type: string
9096
type: object
9197
type: object

0 commit comments

Comments
 (0)