Skip to content

Commit 7bd697a

Browse files
authored
build: generated CRDs yamls (#553)
**What problem does this PR solve?**: There were a couple of PRs come in around the same time and CI didn't catch this change. #535 #536 **Which issue(s) this PR fixes**: Fixes # **How Has This Been Tested?**: <!-- Please describe the tests that you ran to verify your changes. Provide output from the tests and any manual steps needed to replicate the tests. --> **Special notes for your reviewer**: <!-- Use this to provide any additional information to the reviewers. This may include: - Best way to review the PR. - Where the author wants the most review attention on. - etc. -->
1 parent 33b29dc commit 7bd697a

File tree

2 files changed

+73
-0
lines changed

2 files changed

+73
-0
lines changed

api/v1alpha1/crds/caren.nutanix.com_clusterconfigs.yaml

+37
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,21 @@ spec:
240240
properties:
241241
machineDetails:
242242
properties:
243+
additionalCategories:
244+
description: |-
245+
List of categories that need to be added to the machines. Categories must already
246+
exist in Prism Central. One category key can have more than one value.
247+
items:
248+
properties:
249+
key:
250+
description: key is the Key of category in PC.
251+
type: string
252+
value:
253+
description: value is the category value linked
254+
to the category key in PC
255+
type: string
256+
type: object
257+
type: array
243258
bootType:
244259
description: Defines the boot type of the virtual machine.
245260
Only supports UEFI and Legacy
@@ -296,6 +311,28 @@ spec:
296311
format) of the VM
297312
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
298313
x-kubernetes-int-or-string: true
314+
project:
315+
description: |-
316+
add the virtual machines to the project defined in Prism Central.
317+
The project must already be present in the Prism Central.
318+
properties:
319+
name:
320+
description: name is the resource name in the PC
321+
type: string
322+
type:
323+
description: Type is the identifier type to use for
324+
this resource.
325+
enum:
326+
- uuid
327+
- name
328+
type: string
329+
uuid:
330+
description: uuid is the UUID of the resource in the
331+
PC.
332+
type: string
333+
required:
334+
- type
335+
type: object
299336
subnets:
300337
description: |-
301338
subnet identifies the network subnet to use for the machine.

api/v1alpha1/crds/caren.nutanix.com_nodeconfigs.yaml

+36
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,21 @@ spec:
9292
properties:
9393
machineDetails:
9494
properties:
95+
additionalCategories:
96+
description: |-
97+
List of categories that need to be added to the machines. Categories must already
98+
exist in Prism Central. One category key can have more than one value.
99+
items:
100+
properties:
101+
key:
102+
description: key is the Key of category in PC.
103+
type: string
104+
value:
105+
description: value is the category value linked to the
106+
category key in PC
107+
type: string
108+
type: object
109+
type: array
95110
bootType:
96111
description: Defines the boot type of the virtual machine.
97112
Only supports UEFI and Legacy
@@ -146,6 +161,27 @@ spec:
146161
of the VM
147162
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
148163
x-kubernetes-int-or-string: true
164+
project:
165+
description: |-
166+
add the virtual machines to the project defined in Prism Central.
167+
The project must already be present in the Prism Central.
168+
properties:
169+
name:
170+
description: name is the resource name in the PC
171+
type: string
172+
type:
173+
description: Type is the identifier type to use for this
174+
resource.
175+
enum:
176+
- uuid
177+
- name
178+
type: string
179+
uuid:
180+
description: uuid is the UUID of the resource in the PC.
181+
type: string
182+
required:
183+
- type
184+
type: object
149185
subnets:
150186
description: |-
151187
subnet identifies the network subnet to use for the machine.

0 commit comments

Comments
 (0)