Skip to content

Commit

Permalink
[create-pull-request] automated change
Browse files Browse the repository at this point in the history
  • Loading branch information
MarceloFCandido authored Nov 5, 2024
1 parent 790c7e7 commit 11972cd
Show file tree
Hide file tree
Showing 31 changed files with 1,884 additions and 1,559 deletions.
4 changes: 2 additions & 2 deletions addons/ec2-chart/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v1
name: ec2-chart
description: A Helm chart for the ACK service controller for Amazon Elastic Cloud Compute (EC2)
version: 1.2.0
appVersion: 1.2.0
version: 1.3.0
appVersion: 1.3.0
home: https://github.com/aws-controllers-k8s/ec2-controller
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
sources:
Expand Down
89 changes: 51 additions & 38 deletions addons/ec2-chart/crds/ec2.services.k8s.aws_dhcpoptions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.9.2
creationTimestamp: null
controller-gen.kubebuilder.io/version: v0.16.2
name: dhcpoptions.ec2.services.k8s.aws
spec:
group: ec2.services.k8s.aws
Expand All @@ -25,20 +24,27 @@ spec:
description: DHCPOptions is the Schema for the DHCPOptions 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'
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'
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: "DhcpOptionsSpec defines the desired state of DhcpOptions.
\n Describes a set of DHCP options."
description: |-
DhcpOptionsSpec defines the desired state of DhcpOptions.
Describes a set of DHCP options.
properties:
dhcpConfigurations:
description: A DHCP configuration option.
Expand All @@ -53,9 +59,10 @@ spec:
type: object
type: array
tags:
description: The tags. The value parameter is required, but if you
don't want the tag to have a value, specify the parameter with no
value, and we set the value to an empty string.
description: |-
The tags. The value parameter is required, but if you don't want the tag
to have a value, specify the parameter with no value, and we set the value
to an empty string.
items:
description: Describes a tag.
properties:
Expand All @@ -72,16 +79,19 @@ spec:
vpcRefs:
items:
description: "AWSResourceReferenceWrapper provides a wrapper around
*AWSResourceReference type to provide more user friendly syntax
for references using 'from' field Ex: APIIDRef: \n from: name:
my-api"
*AWSResourceReference\ntype to provide more user friendly syntax
for references using 'from' field\nEx:\nAPIIDRef:\n\n\tfrom:\n\t
\ name: my-api"
properties:
from:
description: AWSResourceReference provides all the values necessary
to reference another k8s resource for finding the identifier(Id/ARN/Name)
description: |-
AWSResourceReference provides all the values necessary to reference another
k8s resource for finding the identifier(Id/ARN/Name)
properties:
name:
type: string
namespace:
type: string
type: object
type: object
type: array
Expand All @@ -92,24 +102,25 @@ spec:
description: DHCPOptionsStatus defines the observed state of DHCPOptions
properties:
ackResourceMetadata:
description: All CRs managed by ACK have a common `Status.ACKResourceMetadata`
member that is used to contain resource sync state, account ownership,
description: |-
All CRs managed by ACK have a common `Status.ACKResourceMetadata` member
that is used to contain resource sync state, account ownership,
constructed ARN for the resource
properties:
arn:
description: 'ARN is the Amazon Resource Name for the resource.
This is a globally-unique identifier and is set only by the
ACK service controller once the controller has orchestrated
the creation of the resource OR when it has verified that an
"adopted" resource (a resource where the ARN annotation was
set by the Kubernetes user on the CR) exists and matches the
supplied CR''s Spec field values. TODO(vijat@): Find a better
strategy for resources that do not have ARN in CreateOutputResponse
https://github.com/aws/aws-controllers-k8s/issues/270'
description: |-
ARN is the Amazon Resource Name for the resource. This is a
globally-unique identifier and is set only by the ACK service controller
once the controller has orchestrated the creation of the resource OR
when it has verified that an "adopted" resource (a resource where the
ARN annotation was set by the Kubernetes user on the CR) exists and
matches the supplied CR's Spec field values.
https://github.com/aws/aws-controllers-k8s/issues/270
type: string
ownerAccountID:
description: OwnerAccountID is the AWS Account ID of the account
that owns the backend AWS service API resource.
description: |-
OwnerAccountID is the AWS Account ID of the account that owns the
backend AWS service API resource.
type: string
region:
description: Region is the AWS region in which the resource exists
Expand All @@ -120,14 +131,16 @@ spec:
- region
type: object
conditions:
description: All CRS managed by ACK have a common `Status.Conditions`
member that contains a collection of `ackv1alpha1.Condition` objects
that describe the various terminal states of the CR and its backend
AWS service API resource
description: |-
All CRS managed by ACK have a common `Status.Conditions` member that
contains a collection of `ackv1alpha1.Condition` objects that describe
the various terminal states of the CR and its backend AWS service API
resource
items:
description: Condition is the common struct used by all CRDs managed
by ACK service controllers to indicate terminal states of the
CR and its backend AWS service API resource
description: |-
Condition is the common struct used by all CRDs managed by ACK service
controllers to indicate terminal states of the CR and its backend AWS
service API resource
properties:
lastTransitionTime:
description: Last time the condition transitioned from one status
Expand Down
121 changes: 67 additions & 54 deletions addons/ec2-chart/crds/ec2.services.k8s.aws_elasticipaddresses.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.9.2
creationTimestamp: null
controller-gen.kubebuilder.io/version: v0.16.2
name: elasticipaddresses.ec2.services.k8s.aws
spec:
group: ec2.services.k8s.aws
Expand All @@ -28,49 +27,60 @@ spec:
description: ElasticIPAddress is the Schema for the ElasticIPAddresses 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'
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'
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: ElasticIPAddressSpec defines the desired state of ElasticIPAddress.
properties:
address:
description: '[EC2-VPC] The Elastic IP address to recover or an IPv4
address from an address pool.'
description: |-
[EC2-VPC] The Elastic IP address to recover or an IPv4 address from an address
pool.
type: string
customerOwnedIPv4Pool:
description: The ID of a customer-owned address pool. Use this parameter
to let Amazon EC2 select an address from the address pool. Alternatively,
specify a specific address from the address pool.
description: |-
The ID of a customer-owned address pool. Use this parameter to let Amazon
EC2 select an address from the address pool. Alternatively, specify a specific
address from the address pool.
type: string
networkBorderGroup:
description: "A unique set of Availability Zones, Local Zones, or
Wavelength Zones from which Amazon Web Services advertises IP addresses.
Use this parameter to limit the IP address to this location. IP
addresses cannot move between network border groups. \n Use DescribeAvailabilityZones
(https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeAvailabilityZones.html)
to view the network border groups. \n You cannot use a network border
group with EC2 Classic. If you attempt this operation on EC2 Classic,
you receive an InvalidParameterCombination error."
description: |-
A unique set of Availability Zones, Local Zones, or Wavelength Zones from
which Amazon Web Services advertises IP addresses. Use this parameter to
limit the IP address to this location. IP addresses cannot move between network
border groups.
Use DescribeAvailabilityZones (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeAvailabilityZones.html)
to view the network border groups.
You cannot use a network border group with EC2 Classic. If you attempt this
operation on EC2 Classic, you receive an InvalidParameterCombination error.
type: string
publicIPv4Pool:
description: The ID of an address pool that you own. Use this parameter
to let Amazon EC2 select an address from the address pool. To specify
a specific address from the address pool, use the Address parameter
instead.
description: |-
The ID of an address pool that you own. Use this parameter to let Amazon
EC2 select an address from the address pool. To specify a specific address
from the address pool, use the Address parameter instead.
type: string
tags:
description: The tags. The value parameter is required, but if you
don't want the tag to have a value, specify the parameter with no
value, and we set the value to an empty string.
description: |-
The tags. The value parameter is required, but if you don't want the tag
to have a value, specify the parameter with no value, and we set the value
to an empty string.
items:
description: Describes a tag.
properties:
Expand All @@ -85,24 +95,25 @@ spec:
description: ElasticIPAddressStatus defines the observed state of ElasticIPAddress
properties:
ackResourceMetadata:
description: All CRs managed by ACK have a common `Status.ACKResourceMetadata`
member that is used to contain resource sync state, account ownership,
description: |-
All CRs managed by ACK have a common `Status.ACKResourceMetadata` member
that is used to contain resource sync state, account ownership,
constructed ARN for the resource
properties:
arn:
description: 'ARN is the Amazon Resource Name for the resource.
This is a globally-unique identifier and is set only by the
ACK service controller once the controller has orchestrated
the creation of the resource OR when it has verified that an
"adopted" resource (a resource where the ARN annotation was
set by the Kubernetes user on the CR) exists and matches the
supplied CR''s Spec field values. TODO(vijat@): Find a better
strategy for resources that do not have ARN in CreateOutputResponse
https://github.com/aws/aws-controllers-k8s/issues/270'
description: |-
ARN is the Amazon Resource Name for the resource. This is a
globally-unique identifier and is set only by the ACK service controller
once the controller has orchestrated the creation of the resource OR
when it has verified that an "adopted" resource (a resource where the
ARN annotation was set by the Kubernetes user on the CR) exists and
matches the supplied CR's Spec field values.
https://github.com/aws/aws-controllers-k8s/issues/270
type: string
ownerAccountID:
description: OwnerAccountID is the AWS Account ID of the account
that owns the backend AWS service API resource.
description: |-
OwnerAccountID is the AWS Account ID of the account that owns the
backend AWS service API resource.
type: string
region:
description: Region is the AWS region in which the resource exists
Expand All @@ -113,24 +124,26 @@ spec:
- region
type: object
allocationID:
description: '[EC2-VPC] The ID that Amazon Web Services assigns to
represent the allocation of the Elastic IP address for use with
instances in a VPC.'
description: |-
[EC2-VPC] The ID that Amazon Web Services assigns to represent the allocation
of the Elastic IP address for use with instances in a VPC.
type: string
carrierIP:
description: The carrier IP address. This option is only available
for network interfaces which reside in a subnet in a Wavelength
Zone (for example an EC2 instance).
description: |-
The carrier IP address. This option is only available for network interfaces
which reside in a subnet in a Wavelength Zone (for example an EC2 instance).
type: string
conditions:
description: All CRS managed by ACK have a common `Status.Conditions`
member that contains a collection of `ackv1alpha1.Condition` objects
that describe the various terminal states of the CR and its backend
AWS service API resource
description: |-
All CRS managed by ACK have a common `Status.Conditions` member that
contains a collection of `ackv1alpha1.Condition` objects that describe
the various terminal states of the CR and its backend AWS service API
resource
items:
description: Condition is the common struct used by all CRDs managed
by ACK service controllers to indicate terminal states of the
CR and its backend AWS service API resource
description: |-
Condition is the common struct used by all CRDs managed by ACK service
controllers to indicate terminal states of the CR and its backend AWS
service API resource
properties:
lastTransitionTime:
description: Last time the condition transitioned from one status
Expand Down
Loading

0 comments on commit 11972cd

Please sign in to comment.