Skip to content

Commit 3aefe82

Browse files
authored
Update to ACK runtime v0.57.0, code-generator v0.57.0 (#62)
### Update to ACK runtime `v0.57.0`, code-generator `v0.57.0` ---------- * ACK code-generator `v0.57.0` [release notes](https://github.com/aws-controllers-k8s/code-generator/releases/tag/v0.57.0) * ACK runtime `v0.57.0` [release notes](https://github.com/aws-controllers-k8s/runtime/releases/tag/v0.57.0) ---------- NOTE: This PR increments the release version of service controller from `v1.2.0` to `v1.2.1` Once this PR is merged, release `v1.2.1` 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.2.1 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.
1 parent ad09c0b commit 3aefe82

16 files changed

Lines changed: 62 additions & 27 deletions

File tree

OWNERS_ALIASES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ aliases:
55
- a-hilaly
66
- jlbutler
77
- michaelhtm
8-
- rushmash91
98
- knottnt
109
# emeritus-core-ack-team:
10+
# - rushmash91
1111
# - TiberiuGC
1212
# - jaypipes
1313
# - jljaco

apis/v1alpha1/ack-generate-metadata.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
ack_generate_info:
2-
build_date: "2025-11-29T03:46:12Z"
3-
build_hash: 23c7074fa310ad1ccb38946775397c203b49f024
4-
go_version: go1.25.4
5-
version: v0.56.0
2+
build_date: "2026-01-07T18:32:30Z"
3+
build_hash: e743d683160cf0f58a4864e052cdcb0927335ca7
4+
go_version: go1.25.5
5+
version: v0.57.0
66
api_directory_checksum: 32145a35ac5a41245c0db7001a056adf2ff6d463
77
api_version: v1alpha1
88
aws_sdk_go_version: v1.32.6

config/controller/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ kind: Kustomization
66
images:
77
- name: controller
88
newName: public.ecr.aws/aws-controllers-k8s/ssm-controller
9-
newTag: 1.2.0
9+
newTag: 1.2.1

config/crd/common/bases/services.k8s.aws_iamroleselectors.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,16 @@ spec:
6363
required:
6464
- names
6565
type: object
66+
resourceLabelSelector:
67+
description: LabelSelector is a label query over a set of resources.
68+
properties:
69+
matchLabels:
70+
additionalProperties:
71+
type: string
72+
type: object
73+
required:
74+
- matchLabels
75+
type: object
6676
resourceTypeSelector:
6777
items:
6878
properties:

config/crd/common/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
apiVersion: kustomize.config.k8s.io/v1beta1
44
kind: Kustomization
55
resources:
6-
- bases/services.k8s.aws_iamroleselectors.yaml
76
- bases/services.k8s.aws_fieldexports.yaml
7+
- bases/services.k8s.aws_iamroleselectors.yaml

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.24.0
55
toolchain go1.24.1
66

77
require (
8-
github.com/aws-controllers-k8s/runtime v0.56.0
8+
github.com/aws-controllers-k8s/runtime v0.57.0
99
github.com/aws/aws-sdk-go v1.49.0
1010
github.com/aws/aws-sdk-go-v2 v1.34.0
1111
github.com/aws/aws-sdk-go-v2/service/ssm v1.56.8

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
github.com/aws-controllers-k8s/runtime v0.56.0 h1:xT03K82QkY7EpdUDhVKvDY7hLddA+XnKY0xDAePALhM=
2-
github.com/aws-controllers-k8s/runtime v0.56.0/go.mod h1:OkUJN+Ds799JLYZsMJrO2vDJ4snxUeHK2MgrQHbU+Qc=
1+
github.com/aws-controllers-k8s/runtime v0.57.0 h1:cFyQtKX5n7m+soh6uVT64B1+SvmGgHfx2pyX39sXsbA=
2+
github.com/aws-controllers-k8s/runtime v0.57.0/go.mod h1:OkUJN+Ds799JLYZsMJrO2vDJ4snxUeHK2MgrQHbU+Qc=
33
github.com/aws/aws-sdk-go v1.49.0 h1:g9BkW1fo9GqKfwg2+zCD+TW/D36Ux+vtfJ8guF4AYmY=
44
github.com/aws/aws-sdk-go v1.49.0/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk=
55
github.com/aws/aws-sdk-go-v2 v1.34.0 h1:9iyL+cjifckRGEVpRKZP3eIxVlL06Qk1Tk13vreaVQU=

helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v1
22
name: ssm-chart
33
description: A Helm chart for the ACK service controller for Systems Manager (SSM)
4-
version: 1.2.0
5-
appVersion: 1.2.0
4+
version: 1.2.1
5+
appVersion: 1.2.1
66
home: https://github.com/aws-controllers-k8s/ssm-controller
77
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
88
sources:

helm/crds/services.k8s.aws_iamroleselectors.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,16 @@ spec:
6363
required:
6464
- names
6565
type: object
66+
resourceLabelSelector:
67+
description: LabelSelector is a label query over a set of resources.
68+
properties:
69+
matchLabels:
70+
additionalProperties:
71+
type: string
72+
type: object
73+
required:
74+
- matchLabels
75+
type: object
6676
resourceTypeSelector:
6777
items:
6878
properties:

helm/templates/NOTES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{ .Chart.Name }} has been installed.
2-
This chart deploys "public.ecr.aws/aws-controllers-k8s/ssm-controller:1.2.0".
2+
This chart deploys "public.ecr.aws/aws-controllers-k8s/ssm-controller:1.2.1".
33

44
Check its status by running:
55
kubectl --namespace {{ .Release.Namespace }} get pods -l "app.kubernetes.io/instance={{ .Release.Name }}"

0 commit comments

Comments
 (0)