Skip to content

Commit

Permalink
Update the APISpec Schema definition for ENIConfig.
Browse files Browse the repository at this point in the history
  • Loading branch information
orsenthil committed Jun 26, 2024
1 parent 189f00f commit c48a5a4
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions charts/aws-vpc-cni/crds/customresourcedefinition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,42 @@ spec:
openAPIV3Schema:
type: object
x-kubernetes-preserve-unknown-fields: true
description: ENIConfig is the Schema for the eniconfigs API
properties:
apiVersion:
description: |-
APIVersion defines the versioned schema of this representation of an object.
Servers should convert recognized schemas to the latest internal value, and
may reject unrecognized values.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
description: |-
Kind is a string value representing the REST resource this object represents.
Servers may infer this from the endpoint the client submits requests to.
Cannot be updated.
In CamelCase.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
type: object
spec:
description: ENIConfigSpec defines the desired state of ENIConfig
properties:
securityGroups:
items:
type: string
type: array
subnet:
type: string
required:
- securityGroups
- subnet
type: object
status:
description: ENIConfigStatus defines the observed state of ENIConfig
type: object
type: object
names:
plural: eniconfigs
singular: eniconfig
Expand Down

0 comments on commit c48a5a4

Please sign in to comment.