Skip to content

Commit ff257cb

Browse files
committed
operator: move to controller-tools v0.16.1
Signed-off-by: Mikko Ylinen <[email protected]>
1 parent 49db09e commit ff257cb

13 files changed

+26
-175
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ BUILDER ?= "docker"
99
EXTRA_BUILD_ARGS ?= ""
1010

1111
CERT_MANAGER_VERSION ?= v1.15.2
12-
CONTROLLER_GEN_VERSION ?= v0.14.0
12+
CONTROLLER_GEN_VERSION ?= v0.16.1
1313
GOLANGCI_LINT_VERSION ?= v1.57.2
1414
KIND_VERSION ?= v0.23.0
1515
GOLICENSES_VERSION ?= v1.6.0

deployments/fpga_admissionwebhook/crd/bases/fpga.intel.com_acceleratorfunctions.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.14.0
6+
controller-gen.kubebuilder.io/version: v0.16.1
77
name: acceleratorfunctions.fpga.intel.com
88
spec:
99
group: fpga.intel.com

deployments/fpga_admissionwebhook/crd/bases/fpga.intel.com_fpgaregions.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.14.0
6+
controller-gen.kubebuilder.io/version: v0.16.1
77
name: fpgaregions.fpga.intel.com
88
spec:
99
group: fpga.intel.com

deployments/operator/crd/bases/deviceplugin.intel.com_dlbdeviceplugins.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.14.0
6+
controller-gen.kubebuilder.io/version: v0.16.1
77
name: dlbdeviceplugins.deviceplugin.intel.com
88
spec:
99
group: deviceplugin.intel.com
@@ -133,7 +133,6 @@ spec:
133133
the event) or if no container name is specified "spec.containers[2]" (container with
134134
index 2 in this pod). This syntax is chosen only to have some well-defined way of
135135
referencing a part of an object.
136-
TODO: this design is not final and this field is subject to change in the future.
137136
type: string
138137
kind:
139138
description: |-

deployments/operator/crd/bases/deviceplugin.intel.com_dsadeviceplugins.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.14.0
6+
controller-gen.kubebuilder.io/version: v0.16.1
77
name: dsadeviceplugins.deviceplugin.intel.com
88
spec:
99
group: deviceplugin.intel.com
@@ -143,7 +143,6 @@ spec:
143143
the event) or if no container name is specified "spec.containers[2]" (container with
144144
index 2 in this pod). This syntax is chosen only to have some well-defined way of
145145
referencing a part of an object.
146-
TODO: this design is not final and this field is subject to change in the future.
147146
type: string
148147
kind:
149148
description: |-

deployments/operator/crd/bases/deviceplugin.intel.com_fpgadeviceplugins.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.14.0
6+
controller-gen.kubebuilder.io/version: v0.16.1
77
name: fpgadeviceplugins.deviceplugin.intel.com
88
spec:
99
group: deviceplugin.intel.com
@@ -140,7 +140,6 @@ spec:
140140
the event) or if no container name is specified "spec.containers[2]" (container with
141141
index 2 in this pod). This syntax is chosen only to have some well-defined way of
142142
referencing a part of an object.
143-
TODO: this design is not final and this field is subject to change in the future.
144143
type: string
145144
kind:
146145
description: |-

deployments/operator/crd/bases/deviceplugin.intel.com_gpudeviceplugins.yaml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.14.0
6+
controller-gen.kubebuilder.io/version: v0.16.1
77
name: gpudeviceplugins.deviceplugin.intel.com
88
spec:
99
group: deviceplugin.intel.com
@@ -139,9 +139,7 @@ spec:
139139
type: array
140140
type: object
141141
status:
142-
description: |-
143-
GpuDevicePluginStatus defines the observed state of GpuDevicePlugin.
144-
TODO(rojkov): consider code deduplication with QatDevicePluginStatus.
142+
description: GpuDevicePluginStatus defines the observed state of GpuDevicePlugin.
145143
properties:
146144
controlledDaemonSet:
147145
description: ControlledDaemoSet references the DaemonSet controlled
@@ -159,7 +157,6 @@ spec:
159157
the event) or if no container name is specified "spec.containers[2]" (container with
160158
index 2 in this pod). This syntax is chosen only to have some well-defined way of
161159
referencing a part of an object.
162-
TODO: this design is not final and this field is subject to change in the future.
163160
type: string
164161
kind:
165162
description: |-

deployments/operator/crd/bases/deviceplugin.intel.com_iaadeviceplugins.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.14.0
6+
controller-gen.kubebuilder.io/version: v0.16.1
77
name: iaadeviceplugins.deviceplugin.intel.com
88
spec:
99
group: deviceplugin.intel.com
@@ -142,7 +142,6 @@ spec:
142142
the event) or if no container name is specified "spec.containers[2]" (container with
143143
index 2 in this pod). This syntax is chosen only to have some well-defined way of
144144
referencing a part of an object.
145-
TODO: this design is not final and this field is subject to change in the future.
146145
type: string
147146
kind:
148147
description: |-

deployments/operator/crd/bases/deviceplugin.intel.com_qatdeviceplugins.yaml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.14.0
6+
controller-gen.kubebuilder.io/version: v0.16.1
77
name: qatdeviceplugins.deviceplugin.intel.com
88
spec:
99
group: deviceplugin.intel.com
@@ -155,9 +155,7 @@ spec:
155155
type: array
156156
type: object
157157
status:
158-
description: |-
159-
QatDevicePluginStatus defines the observed state of QatDevicePlugin.
160-
TODO(rojkov): consider code deduplication with GpuDevicePluginStatus.
158+
description: QatDevicePluginStatus defines the observed state of QatDevicePlugin.
161159
properties:
162160
controlledDaemonSet:
163161
description: ControlledDaemoSet references the DaemonSet controlled
@@ -175,7 +173,6 @@ spec:
175173
the event) or if no container name is specified "spec.containers[2]" (container with
176174
index 2 in this pod). This syntax is chosen only to have some well-defined way of
177175
referencing a part of an object.
178-
TODO: this design is not final and this field is subject to change in the future.
179176
type: string
180177
kind:
181178
description: |-

deployments/operator/crd/bases/deviceplugin.intel.com_sgxdeviceplugins.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.14.0
6+
controller-gen.kubebuilder.io/version: v0.16.1
77
name: sgxdeviceplugins.deviceplugin.intel.com
88
spec:
99
group: deviceplugin.intel.com
@@ -144,7 +144,6 @@ spec:
144144
the event) or if no container name is specified "spec.containers[2]" (container with
145145
index 2 in this pod). This syntax is chosen only to have some well-defined way of
146146
referencing a part of an object.
147-
TODO: this design is not final and this field is subject to change in the future.
148147
type: string
149148
kind:
150149
description: |-

0 commit comments

Comments
 (0)