Skip to content

Commit 4a48dcb

Browse files
Release artifacts for release v0.0.4 (#11)
Release artifacts for DynamoDB Controller `v0.0.4`
1 parent 1e45637 commit 4a48dcb

9 files changed

+567
-18
lines changed

helm/Chart.yaml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
apiVersion: v1
22
name: ack-dynamodb-controller
33
description: A Helm chart for the ACK service controller for dynamodb
4-
version: v0.0.2
5-
appVersion: v0.0.2
6-
home: https://github.com/aws/aws-controllers-k8s
4+
version: v0.0.4
5+
appVersion: v0.0.4
6+
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:
9-
- https://github.com/aws/aws-controllers-k8s
9+
- https://github.com/aws-controllers-k8s/dynamodb-controller
1010
maintainers:
1111
- name: ACK Admins
12-
url: https://github.com/orgs/aws/teams/aws-controllers-for-kubernetes-ack-admins
12+
url: https://github.com/orgs/aws-controllers-k8s/teams/ack-admin
13+
- name: dynamodb Admins
14+
url: https://github.com/orgs/aws-controllers-k8s/teams/dynamodb-maintainer
1315
keywords:
1416
- aws
1517
- kubernetes

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

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,13 @@ spec:
3434
metadata:
3535
type: object
3636
spec:
37-
description: BackupSpec defines the desired state of Backup
37+
description: BackupSpec defines the desired state of Backup.
3838
properties:
3939
backupName:
40+
description: Specified name for the backup.
4041
type: string
4142
tableName:
43+
description: The name of the table.
4244
type: string
4345
required:
4446
- backupName
@@ -71,17 +73,32 @@ spec:
7173
- ownerAccountID
7274
type: object
7375
backupCreationDateTime:
76+
description: Time at which the backup was created. This is the request
77+
time of the backup.
7478
format: date-time
7579
type: string
7680
backupExpiryDateTime:
81+
description: Time at which the automatic on-demand backup created
82+
by DynamoDB will expire. This SYSTEM on-demand backup expires automatically
83+
35 days after its creation.
7784
format: date-time
7885
type: string
7986
backupSizeBytes:
87+
description: Size of the backup in bytes.
8088
format: int64
8189
type: integer
8290
backupStatus:
91+
description: 'Backup can be in one of the following states: CREATING,
92+
ACTIVE, DELETED.'
8393
type: string
8494
backupType:
95+
description: "BackupType: \n * USER - You create and manage these
96+
using the on-demand backup feature. \n * SYSTEM - If you delete
97+
a table with point-in-time recovery enabled, a SYSTEM backup
98+
is automatically created and is retained for 35 days (at no additional
99+
cost). System backups allow you to restore the deleted table to
100+
the state it was in just before the point of deletion. \n * AWS_BACKUP
101+
- On-demand backup created by you from AWS Backup service."
85102
type: string
86103
conditions:
87104
description: All CRS managed by ACK have a common `Status.Conditions`
@@ -116,9 +133,6 @@ spec:
116133
- type
117134
type: object
118135
type: array
119-
required:
120-
- ackResourceMetadata
121-
- conditions
122136
type: object
123137
type: object
124138
served: true

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

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,16 @@ spec:
3434
metadata:
3535
type: object
3636
spec:
37-
description: GlobalTableSpec defines the desired state of GlobalTable
37+
description: "GlobalTableSpec defines the desired state of GlobalTable.
38+
\n Represents the properties of a global table."
3839
properties:
3940
globalTableName:
41+
description: The global table name.
4042
type: string
4143
replicationGroup:
44+
description: The Regions where the global table needs to be created.
4245
items:
46+
description: Represents the properties of a replica.
4347
properties:
4448
regionName:
4549
type: string
@@ -109,13 +113,15 @@ spec:
109113
type: object
110114
type: array
111115
creationDateTime:
116+
description: The creation time of the global table.
112117
format: date-time
113118
type: string
114119
globalTableStatus:
120+
description: "The current state of the global table: \n * CREATING
121+
- The global table is being created. \n * UPDATING - The global
122+
table is being updated. \n * DELETING - The global table is being
123+
deleted. \n * ACTIVE - The global table is ready for use."
115124
type: string
116-
required:
117-
- ackResourceMetadata
118-
- conditions
119125
type: object
120126
type: object
121127
served: true

0 commit comments

Comments
 (0)