Skip to content

Commit 565fc98

Browse files
committed
run make build-controller (#1790)
1 parent 510c8c9 commit 565fc98

19 files changed

+190
-35
lines changed
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
ack_generate_info:
2-
build_date: "2023-05-15T23:40:33Z"
3-
build_hash: 8f3ba427974fd6e769926778d54834eaee3b81a3
4-
go_version: go1.19
5-
version: v0.26.1
6-
api_directory_checksum: 62a4051ba2ded255ad270b491703d3c14440b2c7
2+
build_date: "2023-07-19T22:16:06Z"
3+
build_hash: 6657565bb742e5cd4cd340d01d5e4786b5fbabc0
4+
go_version: go1.20.5
5+
version: v0.26.0
6+
api_directory_checksum: 7d367fcbd95521797ddaf41af226deeac4098ff3
77
api_version: v1alpha1
88
aws_sdk_go_version: v1.44.93
99
generator_config_info:
10-
file_checksum: 0b7493aa8cdf19370936a973ed31804875d2dfba
10+
file_checksum: ea20b9278b1e6fd3ac21b86489db529358940a2d
1111
original_file_name: generator.yaml
1212
last_modification:
1313
reason: API generation

apis/v1alpha1/generator.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ resources:
2323
from:
2424
operation: UpdateTimeToLive
2525
path: TimeToLiveSpecification
26+
ContinuousBackups:
27+
from:
28+
operation: UpdateContinuousBackups
29+
path: PointInTimeRecoverySpecification
2630
AttributeDefinitions:
2731
compare:
2832
is_ignored: true
@@ -134,4 +138,4 @@ resources:
134138
type: string
135139
- name: STATUS
136140
json_path: .status.backupStatus
137-
type: string
141+
type: string

apis/v1alpha1/table.go

Lines changed: 2 additions & 0 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: 47 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apis/v1alpha1/zz_generated.deepcopy.go

Lines changed: 95 additions & 0 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: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,6 @@ spec:
7373
capabilities:
7474
drop:
7575
- ALL
76-
securityContext:
77-
seccompProfile:
78-
type: RuntimeDefault
7976
terminationGracePeriodSeconds: 10
8077
serviceAccountName: ack-dynamodb-controller
8178
hostIPC: false

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: 1.1.2
9+
newTag: v1.1.2

config/crd/bases/dynamodb.services.k8s.aws_tables.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,13 @@ spec:
7575
workloads. PAY_PER_REQUEST sets the billing mode to On-Demand Mode
7676
(https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html#HowItWorks.OnDemand)."
7777
type: string
78+
continuousBackups:
79+
description: Represents the settings used to enable point in time
80+
recovery.
81+
properties:
82+
pointInTimeRecoveryEnabled:
83+
type: boolean
84+
type: object
7885
globalSecondaryIndexes:
7986
description: "One or more global secondary indexes (the maximum is
8087
20) to be created on the table. Each global secondary index in the

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: dynamodb-chart
33
description: A Helm chart for the ACK service controller for Amazon DynamoDB (DynamoDB)
4-
version: 1.1.2
5-
appVersion: 1.1.2
4+
version: v1.1.2
5+
appVersion: v1.1.2
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:

helm/crds/dynamodb.services.k8s.aws_tables.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,13 @@ spec:
7575
workloads. PAY_PER_REQUEST sets the billing mode to On-Demand Mode
7676
(https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html#HowItWorks.OnDemand)."
7777
type: string
78+
continuousBackups:
79+
description: Represents the settings used to enable point in time
80+
recovery.
81+
properties:
82+
pointInTimeRecoveryEnabled:
83+
type: boolean
84+
type: object
7885
globalSecondaryIndexes:
7986
description: "One or more global secondary indexes (the maximum is
8087
20) to be created on the table. Each global secondary index in the

0 commit comments

Comments
 (0)