Skip to content

Commit 600a48f

Browse files
authored
Update to ACK runtime v0.23.0, code-generator v0.23.1 (#58)
### Update to ACK runtime `v0.23.0`, code-generator `v0.23.1` ---------- * ACK code-generator `v0.23.1` [release notes](https://github.com/aws-controllers-k8s/code-generator/releases/tag/v0.23.1) * ACK runtime `v0.23.0` [release notes](https://github.com/aws-controllers-k8s/runtime/releases/tag/v0.23.0) ---------- NOTE: This PR increments the release version of service controller from `v0.1.8` to `v0.1.9` Once this PR is merged, release `v0.1.9` will be automatically created for `dynamodb-controller` **Please close this PR, if you do not want the new patch release for `dynamodb-controller`** ---------- #### stdout for `make build-controller`: ``` building ack-generate ... ok. ==== building dynamodb-controller ==== Copying common custom resource definitions into dynamodb Building Kubernetes API objects for dynamodb Generating deepcopy code for dynamodb Generating custom resource definitions for dynamodb Building service controller for dynamodb Generating RBAC manifests for dynamodb Running gofmt against generated code for dynamodb Updating additional GitHub repository maintenance files ==== building dynamodb-controller release artifacts ==== Building release artifacts for dynamodb-v0.1.9 Generating common custom resource definitions Generating custom resource definitions for dynamodb Generating RBAC manifests for dynamodb ``` ---------- By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent af1d0fa commit 600a48f

18 files changed

+133
-128
lines changed

apis/v1alpha1/ack-generate-metadata.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
ack_generate_info:
2-
build_date: "2022-12-08T18:29:12Z"
3-
build_hash: 12246c7da82841b351ec7a9e1f139f9338f2784b
4-
go_version: go1.17.5
5-
version: v0.21.0
6-
api_directory_checksum: e43ab692cc304bb58d785cec5a5bc111c62e91cd
2+
build_date: "2023-02-02T18:14:12Z"
3+
build_hash: b55ae8752ece381c383ffe5b388ed2147c6b30d8
4+
go_version: go1.19
5+
version: v0.23.1
6+
api_directory_checksum: 553eee36730dd0637424a8d9348b37ee90eb594d
77
api_version: v1alpha1
88
aws_sdk_go_version: v1.44.93
99
generator_config_info:

apis/v1alpha1/backup.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apis/v1alpha1/global_table.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apis/v1alpha1/table.go

Lines changed: 63 additions & 58 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apis/v1alpha1/types.go

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/controller/deployment.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
apiVersion: v1
22
kind: Namespace
33
metadata:
4-
labels:
5-
control-plane: controller
64
name: ack-system
75
---
86
apiVersion: apps/v1
@@ -11,16 +9,17 @@ metadata:
119
name: ack-dynamodb-controller
1210
namespace: ack-system
1311
labels:
14-
control-plane: controller
12+
app.kubernetes.io/name: ack-dynamodb-controller
13+
app.kubernetes.io/part-of: ack-system
1514
spec:
1615
selector:
1716
matchLabels:
18-
control-plane: controller
17+
app.kubernetes.io/name: ack-dynamodb-controller
1918
replicas: 1
2019
template:
2120
metadata:
2221
labels:
23-
control-plane: controller
22+
app.kubernetes.io/name: ack-dynamodb-controller
2423
spec:
2524
containers:
2625
- command:

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/dynamodb-controller
9-
newTag: v0.1.8
9+
newTag: v0.1.9

config/controller/service.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
namespace: ack-system
66
spec:
77
selector:
8-
control-plane: controller
8+
app.kubernetes.io/name: ack-dynamodb-controller
99
ports:
1010
- name: metricsport
1111
port: 8080

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module github.com/aws-controllers-k8s/dynamodb-controller
22

3-
go 1.17
3+
go 1.19
44

55
require (
6-
github.com/aws-controllers-k8s/runtime v0.21.0
6+
github.com/aws-controllers-k8s/runtime v0.23.0
77
github.com/aws/aws-sdk-go v1.44.93
88
github.com/go-logr/logr v1.2.0
99
github.com/spf13/pflag v1.0.5

0 commit comments

Comments
 (0)