Skip to content

Commit c48a5a4

Browse files
committed
Update the APISpec Schema definition for ENIConfig.
1 parent 189f00f commit c48a5a4

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

charts/aws-vpc-cni/crds/customresourcedefinition.yaml

+36
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,42 @@ spec:
1414
openAPIV3Schema:
1515
type: object
1616
x-kubernetes-preserve-unknown-fields: true
17+
description: ENIConfig is the Schema for the eniconfigs API
18+
properties:
19+
apiVersion:
20+
description: |-
21+
APIVersion defines the versioned schema of this representation of an object.
22+
Servers should convert recognized schemas to the latest internal value, and
23+
may reject unrecognized values.
24+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
25+
type: string
26+
kind:
27+
description: |-
28+
Kind is a string value representing the REST resource this object represents.
29+
Servers may infer this from the endpoint the client submits requests to.
30+
Cannot be updated.
31+
In CamelCase.
32+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
33+
type: string
34+
metadata:
35+
type: object
36+
spec:
37+
description: ENIConfigSpec defines the desired state of ENIConfig
38+
properties:
39+
securityGroups:
40+
items:
41+
type: string
42+
type: array
43+
subnet:
44+
type: string
45+
required:
46+
- securityGroups
47+
- subnet
48+
type: object
49+
status:
50+
description: ENIConfigStatus defines the observed state of ENIConfig
51+
type: object
52+
type: object
1753
names:
1854
plural: eniconfigs
1955
singular: eniconfig

0 commit comments

Comments
 (0)