Skip to content

Commit 1f08419

Browse files
authored
[create-pull-request] automated change
1 parent 20242e4 commit 1f08419

22 files changed

+1127
-855
lines changed

addons/iam-chart/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v1
22
name: iam-chart
33
description: A Helm chart for the ACK service controller for AWS Identity & Access Management (IAM)
4-
version: 1.3.2
5-
appVersion: 1.3.2
4+
version: 1.3.18
5+
appVersion: 1.3.18
66
home: https://github.com/aws-controllers-k8s/iam-controller
77
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
88
sources:

addons/iam-chart/crds/iam.services.k8s.aws_groups.yaml

+80-55
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.9.2
7-
creationTimestamp: null
6+
controller-gen.kubebuilder.io/version: v0.16.2
87
name: groups.iam.services.k8s.aws
98
spec:
109
group: iam.services.k8s.aws
@@ -21,45 +20,63 @@ spec:
2120
description: Group is the Schema for the Groups API
2221
properties:
2322
apiVersion:
24-
description: 'APIVersion defines the versioned schema of this representation
25-
of an object. Servers should convert recognized schemas to the latest
26-
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
23+
description: |-
24+
APIVersion defines the versioned schema of this representation of an object.
25+
Servers should convert recognized schemas to the latest internal value, and
26+
may reject unrecognized values.
27+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
2728
type: string
2829
kind:
29-
description: 'Kind is a string value representing the REST resource this
30-
object represents. Servers may infer this from the endpoint the client
31-
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
30+
description: |-
31+
Kind is a string value representing the REST resource this object represents.
32+
Servers may infer this from the endpoint the client submits requests to.
33+
Cannot be updated.
34+
In CamelCase.
35+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
3236
type: string
3337
metadata:
3438
type: object
3539
spec:
36-
description: "GroupSpec defines the desired state of Group. \n Contains
37-
information about an IAM group entity. \n This data type is used as
38-
a response element in the following operations: \n - CreateGroup \n
39-
- GetGroup \n - ListGroups"
40+
description: |-
41+
GroupSpec defines the desired state of Group.
42+
43+
Contains information about an IAM group entity.
44+
45+
This data type is used as a response element in the following operations:
46+
47+
- CreateGroup
48+
49+
- GetGroup
50+
51+
- ListGroups
4052
properties:
4153
inlinePolicies:
4254
additionalProperties:
4355
type: string
4456
type: object
4557
name:
46-
description: "The name of the group to create. Do not include the
47-
path in this value. \n IAM user, group, role, and policy names must
48-
be unique within the account. Names are not distinguished by case.
49-
For example, you cannot create resources named both \"MyResource\"
50-
and \"myresource\"."
58+
description: |-
59+
The name of the group to create. Do not include the path in this value.
60+
61+
IAM user, group, role, and policy names must be unique within the account.
62+
Names are not distinguished by case. For example, you cannot create resources
63+
named both "MyResource" and "myresource".
5164
type: string
5265
path:
53-
description: "The path to the group. For more information about paths,
54-
see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
55-
in the IAM User Guide. \n This parameter is optional. If it is not
56-
included, it defaults to a slash (/). \n This parameter allows (through
57-
its regex pattern (http://wikipedia.org/wiki/regex)) a string of
58-
characters consisting of either a forward slash (/) by itself or
59-
a string that must begin and end with forward slashes. In addition,
60-
it can contain any ASCII character from the ! (\\u0021) through
61-
the DEL character (\\u007F), including most punctuation characters,
62-
digits, and upper and lowercased letters."
66+
description: |-
67+
The path to the group. For more information about paths, see IAM identifiers
68+
(https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
69+
in the IAM User Guide.
70+
71+
This parameter is optional. If it is not included, it defaults to a slash
72+
(/).
73+
74+
This parameter allows (through its regex pattern (http://wikipedia.org/wiki/regex))
75+
a string of characters consisting of either a forward slash (/) by itself
76+
or a string that must begin and end with forward slashes. In addition, it
77+
can contain any ASCII character from the ! (\u0021) through the DEL character
78+
(\u007F), including most punctuation characters, digits, and upper and lowercased
79+
letters.
6380
type: string
6481
policies:
6582
items:
@@ -68,16 +85,19 @@ spec:
6885
policyRefs:
6986
items:
7087
description: "AWSResourceReferenceWrapper provides a wrapper around
71-
*AWSResourceReference type to provide more user friendly syntax
72-
for references using 'from' field Ex: APIIDRef: \n from: name:
73-
my-api"
88+
*AWSResourceReference\ntype to provide more user friendly syntax
89+
for references using 'from' field\nEx:\nAPIIDRef:\n\n\tfrom:\n\t
90+
\ name: my-api"
7491
properties:
7592
from:
76-
description: AWSResourceReference provides all the values necessary
77-
to reference another k8s resource for finding the identifier(Id/ARN/Name)
93+
description: |-
94+
AWSResourceReference provides all the values necessary to reference another
95+
k8s resource for finding the identifier(Id/ARN/Name)
7896
properties:
7997
name:
8098
type: string
99+
namespace:
100+
type: string
81101
type: object
82102
type: object
83103
type: array
@@ -88,24 +108,25 @@ spec:
88108
description: GroupStatus defines the observed state of Group
89109
properties:
90110
ackResourceMetadata:
91-
description: All CRs managed by ACK have a common `Status.ACKResourceMetadata`
92-
member that is used to contain resource sync state, account ownership,
111+
description: |-
112+
All CRs managed by ACK have a common `Status.ACKResourceMetadata` member
113+
that is used to contain resource sync state, account ownership,
93114
constructed ARN for the resource
94115
properties:
95116
arn:
96-
description: 'ARN is the Amazon Resource Name for the resource.
97-
This is a globally-unique identifier and is set only by the
98-
ACK service controller once the controller has orchestrated
99-
the creation of the resource OR when it has verified that an
100-
"adopted" resource (a resource where the ARN annotation was
101-
set by the Kubernetes user on the CR) exists and matches the
102-
supplied CR''s Spec field values. TODO(vijat@): Find a better
103-
strategy for resources that do not have ARN in CreateOutputResponse
104-
https://github.com/aws/aws-controllers-k8s/issues/270'
117+
description: |-
118+
ARN is the Amazon Resource Name for the resource. This is a
119+
globally-unique identifier and is set only by the ACK service controller
120+
once the controller has orchestrated the creation of the resource OR
121+
when it has verified that an "adopted" resource (a resource where the
122+
ARN annotation was set by the Kubernetes user on the CR) exists and
123+
matches the supplied CR's Spec field values.
124+
https://github.com/aws/aws-controllers-k8s/issues/270
105125
type: string
106126
ownerAccountID:
107-
description: OwnerAccountID is the AWS Account ID of the account
108-
that owns the backend AWS service API resource.
127+
description: |-
128+
OwnerAccountID is the AWS Account ID of the account that owns the
129+
backend AWS service API resource.
109130
type: string
110131
region:
111132
description: Region is the AWS region in which the resource exists
@@ -116,14 +137,16 @@ spec:
116137
- region
117138
type: object
118139
conditions:
119-
description: All CRS managed by ACK have a common `Status.Conditions`
120-
member that contains a collection of `ackv1alpha1.Condition` objects
121-
that describe the various terminal states of the CR and its backend
122-
AWS service API resource
140+
description: |-
141+
All CRs managed by ACK have a common `Status.Conditions` member that
142+
contains a collection of `ackv1alpha1.Condition` objects that describe
143+
the various terminal states of the CR and its backend AWS service API
144+
resource
123145
items:
124-
description: Condition is the common struct used by all CRDs managed
125-
by ACK service controllers to indicate terminal states of the
126-
CR and its backend AWS service API resource
146+
description: |-
147+
Condition is the common struct used by all CRDs managed by ACK service
148+
controllers to indicate terminal states of the CR and its backend AWS
149+
service API resource
127150
properties:
128151
lastTransitionTime:
129152
description: Last time the condition transitioned from one status
@@ -149,13 +172,15 @@ spec:
149172
type: object
150173
type: array
151174
createDate:
152-
description: The date and time, in ISO 8601 date-time format (http://www.iso.org/iso/iso8601),
175+
description: |-
176+
The date and time, in ISO 8601 date-time format (http://www.iso.org/iso/iso8601),
153177
when the group was created.
154178
format: date-time
155179
type: string
156180
groupID:
157-
description: The stable and unique string identifying the group. For
158-
more information about IDs, see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
181+
description: |-
182+
The stable and unique string identifying the group. For more information
183+
about IDs, see IAM identifiers (https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html)
159184
in the IAM User Guide.
160185
type: string
161186
type: object

0 commit comments

Comments
 (0)