You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update to ACK runtime v0.47.0, code-generator v0.47.1 (#45)
### Update to ACK runtime `v0.47.0`, code-generator `v0.47.1`
----------
* ACK code-generator `v0.47.1` [release notes](https://github.com/aws-controllers-k8s/code-generator/releases/tag/v0.47.1)
* ACK runtime `v0.47.0` [release notes](https://github.com/aws-controllers-k8s/runtime/releases/tag/v0.47.0)
----------
NOTE:
This PR increments the release version of service controller from `v1.0.7` to `v1.0.8`
Once this PR is merged, release `v1.0.8` will be automatically created for `ssm-controller`
**Please close this PR, if you do not want the new patch release for `ssm-controller`**
----------
#### stdout for `make build-controller`:
```
building ack-generate ... ok.
==== building ssm-controller ====
Copying common custom resource definitions into ssm
Building Kubernetes API objects for ssm
Generating deepcopy code for ssm
Generating custom resource definitions for ssm
Building service controller for ssm
Running GO mod tidy
Generating RBAC manifests for ssm
Running gofmt against generated code for ssm
Updating additional GitHub repository maintenance files
==== building ssm-controller release artifacts ====
Building release artifacts for ssm-v1.0.8
Generating common custom resource definitions
Generating custom resource definitions for ssm
Generating RBAC manifests for ssm
```
----------
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
Copy file name to clipboardExpand all lines: config/crd/bases/ssm.services.k8s.aws_documents.yaml
+32-7Lines changed: 32 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -79,6 +79,8 @@ spec:
79
79
An optional field where you can specify a friendly name for the SSM document.
80
80
This value can differ for each version of the document. You can update this
81
81
value at a later time using the UpdateDocument operation.
82
+
83
+
Regex Pattern: `^[\w\.\-\:\/ ]*$`
82
84
type: string
83
85
documentFormat:
84
86
description: |-
@@ -110,6 +112,8 @@ spec:
110
112
* AWSConfigRemediation
111
113
112
114
* AWSSupport
115
+
116
+
Regex Pattern: `^[a-zA-Z0-9_\-.]{3,128}$`
113
117
type: string
114
118
requires:
115
119
description: |-
@@ -169,12 +173,16 @@ spec:
169
173
can't run on any resources. For a list of valid resource types, see Amazon
170
174
Web Services resource and property types reference (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html)
171
175
in the CloudFormation User Guide.
176
+
177
+
Regex Pattern: `^\/[\w\.\-\:\/]*$`
172
178
type: string
173
179
versionName:
174
180
description: |-
175
181
An optional field specifying the version of the artifact you are creating
176
182
with the document. For example, Release12.1. This value is unique across
177
183
all versions of a document, and can't be changed.
184
+
185
+
Regex Pattern: `^[a-zA-Z0-9_\-.]{1,128}$`
178
186
type: string
179
187
required:
180
188
- content
@@ -213,8 +221,10 @@ spec:
213
221
- region
214
222
type: object
215
223
approvedVersion:
216
-
description: The version of the document currently approved for use
217
-
in the organization.
224
+
description: |-
225
+
The version of the document currently approved for use in the organization.
Copy file name to clipboardExpand all lines: helm/crds/ssm.services.k8s.aws_documents.yaml
+32-7Lines changed: 32 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -79,6 +79,8 @@ spec:
79
79
An optional field where you can specify a friendly name for the SSM document.
80
80
This value can differ for each version of the document. You can update this
81
81
value at a later time using the UpdateDocument operation.
82
+
83
+
Regex Pattern: `^[\w\.\-\:\/ ]*$`
82
84
type: string
83
85
documentFormat:
84
86
description: |-
@@ -110,6 +112,8 @@ spec:
110
112
- AWSConfigRemediation
111
113
112
114
- AWSSupport
115
+
116
+
Regex Pattern: `^[a-zA-Z0-9_\-.]{3,128}$`
113
117
type: string
114
118
requires:
115
119
description: |-
@@ -169,12 +173,16 @@ spec:
169
173
can't run on any resources. For a list of valid resource types, see Amazon
170
174
Web Services resource and property types reference (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html)
171
175
in the CloudFormation User Guide.
176
+
177
+
Regex Pattern: `^\/[\w\.\-\:\/]*$`
172
178
type: string
173
179
versionName:
174
180
description: |-
175
181
An optional field specifying the version of the artifact you are creating
176
182
with the document. For example, Release12.1. This value is unique across
177
183
all versions of a document, and can't be changed.
184
+
185
+
Regex Pattern: `^[a-zA-Z0-9_\-.]{1,128}$`
178
186
type: string
179
187
required:
180
188
- content
@@ -213,8 +221,10 @@ spec:
213
221
- region
214
222
type: object
215
223
approvedVersion:
216
-
description: The version of the document currently approved for use
217
-
in the organization.
224
+
description: |-
225
+
The version of the document currently approved for use in the organization.
0 commit comments