File tree Expand file tree Collapse file tree 13 files changed +92
-24
lines changed Expand file tree Collapse file tree 13 files changed +92
-24
lines changed Original file line number Diff line number Diff line change 1
1
ack_generate_info :
2
- build_date : " 2025-05-13T04:52:37Z "
3
- build_hash : 55bf57b2806c33a7fcd074be403f26ce3f8e58db
2
+ build_date : " 2025-05-24T00:43:11Z "
3
+ build_hash : 66a58d259146834e61b211a9a01609beaa58ef77
4
4
go_version : go1.24.2
5
- version : v0.46.2
6
- api_directory_checksum : 73ba0942f1950c4700c2bff40dda380d5994ca6b
5
+ version : v0.47.1
6
+ api_directory_checksum : d5e87ff9a33705cb68e63261c1966a4a59fc4bd5
7
7
api_version : v1alpha1
8
8
aws_sdk_go_version : 1.32.6
9
9
generator_config_info :
Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ kind: Kustomization
6
6
images :
7
7
- name : controller
8
8
newName : public.ecr.aws/aws-controllers-k8s/codeartifact-controller
9
- newTag : 1.0.8
9
+ newTag : 1.0.9
Original file line number Diff line number Diff line change @@ -54,13 +54,17 @@ spec:
54
54
CMK with your domain. For more information, see Using symmetric and asymmetric
55
55
keys (https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html)
56
56
in the Key Management Service Developer Guide.
57
+
58
+ Regex Pattern: `^\S+$`
57
59
type : string
58
60
name :
59
61
description : |-
60
62
The name of the domain to create. All domain names in an Amazon Web Services
61
63
Region that are in the same Amazon Web Services account must be unique. The
62
64
domain name is used as the prefix in DNS hostnames. Do not use sensitive
63
65
information in a domain name because it is publicly discoverable.
66
+
67
+ Regex Pattern: `^[a-z][a-z0-9\-]{0,48}[a-z0-9]$`
64
68
type : string
65
69
tags :
66
70
description : One or more tag key-value pairs for the domain.
@@ -155,7 +159,10 @@ spec:
155
159
format : date-time
156
160
type : string
157
161
owner :
158
- description : The Amazon Web Services account ID that owns the domain.
162
+ description : |-
163
+ The Amazon Web Services account ID that owns the domain.
164
+
165
+ Regex Pattern: `^[0-9]{12}$`
159
166
type : string
160
167
repositoryCount :
161
168
description : The number of repositories in the domain.
@@ -165,6 +172,8 @@ spec:
165
172
description : |-
166
173
The Amazon Resource Name (ARN) of the Amazon S3 bucket that is used to store
167
174
package assets in the domain.
175
+
176
+ Regex Pattern: `^\S+$`
168
177
type : string
169
178
status :
170
179
description : The current status of a domain.
Original file line number Diff line number Diff line change @@ -40,24 +40,36 @@ spec:
40
40
description : PackageGroupSpec defines the desired state of PackageGroup.
41
41
properties :
42
42
contactInfo :
43
- description : The contact information for the created package group.
43
+ description : |-
44
+ The contact information for the created package group.
45
+
46
+ Regex Pattern: `^\P{C}*$`
44
47
type : string
45
48
description :
46
- description : A description of the package group.
49
+ description : |-
50
+ A description of the package group.
51
+
52
+ Regex Pattern: `^\P{C}*$`
47
53
type : string
48
54
domain :
49
- description : The name of the domain in which you want to create a
50
- package group.
55
+ description : |-
56
+ The name of the domain in which you want to create a package group.
57
+
58
+ Regex Pattern: `^[a-z][a-z0-9\-]{0,48}[a-z0-9]$`
51
59
type : string
52
60
domainOwner :
53
61
description : |-
54
62
The 12-digit account number of the Amazon Web Services account that owns
55
63
the domain. It does not include dashes or spaces.
64
+
65
+ Regex Pattern: `^[0-9]{12}$`
56
66
type : string
57
67
pattern :
58
68
description : |-
59
69
The pattern of the package group to create. The pattern is also the identifier
60
70
of the package group.
71
+
72
+ Regex Pattern: `^[^\p{C}\p{IsWhitespace}]+$`
61
73
type : string
62
74
tags :
63
75
description : One or more tag key-value pairs for the package group.
@@ -149,7 +161,10 @@ spec:
149
161
format : date-time
150
162
type : string
151
163
domainName :
152
- description : The name of the domain that contains the package group.
164
+ description : |-
165
+ The name of the domain that contains the package group.
166
+
167
+ Regex Pattern: `^[a-z][a-z0-9\-]{0,48}[a-z0-9]$`
153
168
type : string
154
169
originConfiguration :
155
170
description : |-
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ go 1.24.0
5
5
toolchain go1.24.1
6
6
7
7
require (
8
- github.com/aws-controllers-k8s/runtime v0.46.1
8
+ github.com/aws-controllers-k8s/runtime v0.47.0
9
9
github.com/aws/aws-sdk-go v1.55.5
10
10
github.com/aws/aws-sdk-go-v2 v1.36.0
11
11
github.com/aws/aws-sdk-go-v2/service/codeartifact v1.33.14
Original file line number Diff line number Diff line change 1
- github.com/aws-controllers-k8s/runtime v0.46.1 h1:61RU6uYiFSp0cDhv52vAmaPzrebzoudtsp1fGkk6iLk =
2
- github.com/aws-controllers-k8s/runtime v0.46.1 /go.mod h1:G2UMBKA7qgXG4JV16NTIUp715uqvUEvWaa7TG1I527U =
1
+ github.com/aws-controllers-k8s/runtime v0.47.0 h1:pWzMLrwAFrAmMuSukYDLrQp5Yw594w1ke6XWGmI3uyo =
2
+ github.com/aws-controllers-k8s/runtime v0.47.0 /go.mod h1:G2UMBKA7qgXG4JV16NTIUp715uqvUEvWaa7TG1I527U =
3
3
github.com/aws/aws-sdk-go v1.55.5 h1:KKUZBfBoyqy5d3swXyiC7Q76ic40rYcbqH7qjh59kzU =
4
4
github.com/aws/aws-sdk-go v1.55.5 /go.mod h1:eRwEWoyTWFMVYVQzKMNHWP5/RV4xIUGMQfXQHfHkpNU =
5
5
github.com/aws/aws-sdk-go-v2 v1.36.0 h1:b1wM5CcE65Ujwn565qcwgtOTT1aT4ADOHHgglKjG7fk =
Original file line number Diff line number Diff line change 1
1
apiVersion : v1
2
2
name : codeartifact-chart
3
3
description : A Helm chart for the ACK service controller for CodeArtifact (codeArtifact)
4
- version : 1.0.8
5
- appVersion : 1.0.8
4
+ version : 1.0.9
5
+ appVersion : 1.0.9
6
6
home : https://github.com/aws-controllers-k8s/codeartifact-controller
7
7
icon : https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
8
8
sources :
Original file line number Diff line number Diff line change @@ -54,13 +54,17 @@ spec:
54
54
CMK with your domain. For more information, see Using symmetric and asymmetric
55
55
keys (https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html)
56
56
in the Key Management Service Developer Guide.
57
+
58
+ Regex Pattern: `^\S+$`
57
59
type : string
58
60
name :
59
61
description : |-
60
62
The name of the domain to create. All domain names in an Amazon Web Services
61
63
Region that are in the same Amazon Web Services account must be unique. The
62
64
domain name is used as the prefix in DNS hostnames. Do not use sensitive
63
65
information in a domain name because it is publicly discoverable.
66
+
67
+ Regex Pattern: `^[a-z][a-z0-9\-]{0,48}[a-z0-9]$`
64
68
type : string
65
69
tags :
66
70
description : One or more tag key-value pairs for the domain.
@@ -155,7 +159,10 @@ spec:
155
159
format : date-time
156
160
type : string
157
161
owner :
158
- description : The Amazon Web Services account ID that owns the domain.
162
+ description : |-
163
+ The Amazon Web Services account ID that owns the domain.
164
+
165
+ Regex Pattern: `^[0-9]{12}$`
159
166
type : string
160
167
repositoryCount :
161
168
description : The number of repositories in the domain.
@@ -165,6 +172,8 @@ spec:
165
172
description : |-
166
173
The Amazon Resource Name (ARN) of the Amazon S3 bucket that is used to store
167
174
package assets in the domain.
175
+
176
+ Regex Pattern: `^\S+$`
168
177
type : string
169
178
status :
170
179
description : The current status of a domain.
Original file line number Diff line number Diff line change @@ -40,24 +40,36 @@ spec:
40
40
description : PackageGroupSpec defines the desired state of PackageGroup.
41
41
properties :
42
42
contactInfo :
43
- description : The contact information for the created package group.
43
+ description : |-
44
+ The contact information for the created package group.
45
+
46
+ Regex Pattern: `^\P{C}*$`
44
47
type : string
45
48
description :
46
- description : A description of the package group.
49
+ description : |-
50
+ A description of the package group.
51
+
52
+ Regex Pattern: `^\P{C}*$`
47
53
type : string
48
54
domain :
49
- description : The name of the domain in which you want to create a
50
- package group.
55
+ description : |-
56
+ The name of the domain in which you want to create a package group.
57
+
58
+ Regex Pattern: `^[a-z][a-z0-9\-]{0,48}[a-z0-9]$`
51
59
type : string
52
60
domainOwner :
53
61
description : |-
54
62
The 12-digit account number of the Amazon Web Services account that owns
55
63
the domain. It does not include dashes or spaces.
64
+
65
+ Regex Pattern: `^[0-9]{12}$`
56
66
type : string
57
67
pattern :
58
68
description : |-
59
69
The pattern of the package group to create. The pattern is also the identifier
60
70
of the package group.
71
+
72
+ Regex Pattern: `^[^\p{C}\p{IsWhitespace}]+$`
61
73
type : string
62
74
tags :
63
75
description : One or more tag key-value pairs for the package group.
@@ -149,7 +161,10 @@ spec:
149
161
format : date-time
150
162
type : string
151
163
domainName :
152
- description : The name of the domain that contains the package group.
164
+ description : |-
165
+ The name of the domain that contains the package group.
166
+
167
+ Regex Pattern: `^[a-z][a-z0-9\-]{0,48}[a-z0-9]$`
153
168
type : string
154
169
originConfiguration :
155
170
description : |-
Original file line number Diff line number Diff line change 1
1
{{ .Chart.Name }} has been installed.
2
- This chart deploys "public.ecr.aws/aws-controllers-k8s/codeartifact-controller:1.0.8 ".
2
+ This chart deploys "public.ecr.aws/aws-controllers-k8s/codeartifact-controller:1.0.9 ".
3
3
4
4
Check its status by running:
5
5
kubectl --namespace {{ .Release.Namespace }} get pods -l "app.kubernetes.io/instance={{ .Release.Name }}"
Original file line number Diff line number Diff line change 4
4
5
5
image :
6
6
repository : public.ecr.aws/aws-controllers-k8s/codeartifact-controller
7
- tag : 1.0.8
7
+ tag : 1.0.9
8
8
pullPolicy : IfNotPresent
9
9
pullSecrets : []
10
10
You can’t perform that action at this time.
0 commit comments