Skip to content

Commit af838de

Browse files
authoredOct 27, 2021
Update ACK runtime to v0.15.2 (#19)
### Update ACK runtime to `v0.15.2` ---------- NOTE: This PR increments the release version of service controller from `v0.0.6` to `v0.0.7` Once this PR is merged, release `v0.0.7` 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.0.7 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 7924e33 commit af838de

File tree

9 files changed

+15
-12
lines changed

9 files changed

+15
-12
lines changed
 

Diff for: ‎apis/v1alpha1/ack-generate-metadata.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
ack_generate_info:
2-
build_date: "2021-10-08T18:36:38Z"
3-
build_hash: 385779a205bea50e8762b76bc75cab957cf723b9
2+
build_date: "2021-10-27T21:04:06Z"
3+
build_hash: d2b063806d25cfcae4f2d4eb44f8e3f713b23e8e
44
go_version: go1.15
5-
version: v0.15.1
5+
version: v0.15.2
66
api_directory_checksum: c1d144a18336326f141e97e6800b47f64ed992cc
77
api_version: v1alpha1
88
aws_sdk_go_version: v1.38.47

Diff for: ‎go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/aws-controllers-k8s/dynamodb-controller
33
go 1.14
44

55
require (
6-
github.com/aws-controllers-k8s/runtime v0.15.1
6+
github.com/aws-controllers-k8s/runtime v0.15.2
77
github.com/aws/aws-sdk-go v1.38.47
88
github.com/go-logr/logr v0.1.0
99
github.com/spf13/pflag v1.0.5

Diff for: ‎go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883/go.mod h1:rCTlJbsFo
2323
github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8=
2424
github.com/asaskevich/govalidator v0.0.0-20180720115003-f9ffefc3facf/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY=
2525
github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY=
26-
github.com/aws-controllers-k8s/runtime v0.15.1 h1:3P+6MKWe8ITJynmoxmDnMPlkoI9nuVgn8XD9Pt/XHE8=
27-
github.com/aws-controllers-k8s/runtime v0.15.1/go.mod h1:W0Txdhb1Npx5kg72w2WFwIpGFvSsMxXlJzzNHAwCLeY=
26+
github.com/aws-controllers-k8s/runtime v0.15.2 h1:waRPQGw+b/9huNHcMG+LQoVW4VP2YIBqZNdB+JAh//E=
27+
github.com/aws-controllers-k8s/runtime v0.15.2/go.mod h1:W0Txdhb1Npx5kg72w2WFwIpGFvSsMxXlJzzNHAwCLeY=
2828
github.com/aws/aws-sdk-go v1.37.10/go.mod h1:hcU610XS61/+aQV88ixoOzUoG7v3b31pl2zKMmprdro=
2929
github.com/aws/aws-sdk-go v1.38.47 h1:yWOz6zlDCiY3zvebYOZrI1LqCq6zWPWC5Cfe+mBcPos=
3030
github.com/aws/aws-sdk-go v1.38.47/go.mod h1:hcU610XS61/+aQV88ixoOzUoG7v3b31pl2zKMmprdro=

Diff for: ‎helm/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v1
22
name: dynamodb-chart
33
description: A Helm chart for the ACK service controller for Amazon DynamoDB (DynamoDB)
4-
version: v0.0.6
5-
appVersion: v0.0.6
4+
version: v0.0.7
5+
appVersion: v0.0.7
66
home: https://github.com/aws-controllers-k8s/dynamodb-controller
77
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
88
sources:

Diff for: ‎helm/templates/deployment.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,6 @@ spec:
6161
valueFrom:
6262
fieldRef:
6363
fieldPath: metadata.namespace
64-
- name: AWS_ACCOUNT_ID
65-
value: {{ .Values.aws.account_id | quote }}
6664
- name: AWS_REGION
6765
value: {{ .Values.aws.region }}
6866
- name: AWS_ENDPOINT_URL

Diff for: ‎helm/values.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
image:
66
repository: public.ecr.aws/aws-controllers-k8s/dynamodb-controller
7-
tag: v0.0.6
7+
tag: v0.0.7
88
pullPolicy: IfNotPresent
99
pullSecrets: []
1010

@@ -38,7 +38,6 @@ resources:
3838
aws:
3939
# If specified, use the AWS region for AWS API calls
4040
region: ""
41-
account_id: ""
4241
endpoint_url: ""
4342

4443
# log level for the controller

Diff for: ‎pkg/resource/backup/sdk.go

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎pkg/resource/global_table/sdk.go

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎pkg/resource/table/sdk.go

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.