Skip to content

Commit

Permalink
Release artifacts for release v0.0.4 (#11)
Browse files Browse the repository at this point in the history
Release artifacts for DynamoDB Controller `v0.0.4`
  • Loading branch information
RedbackThomson authored Jul 22, 2021
1 parent 1e45637 commit 4a48dcb
Show file tree
Hide file tree
Showing 9 changed files with 567 additions and 18 deletions.
12 changes: 7 additions & 5 deletions helm/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
apiVersion: v1
name: ack-dynamodb-controller
description: A Helm chart for the ACK service controller for dynamodb
version: v0.0.2
appVersion: v0.0.2
home: https://github.com/aws/aws-controllers-k8s
version: v0.0.4
appVersion: v0.0.4
home: https://github.com/aws-controllers-k8s/dynamodb-controller
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
sources:
- https://github.com/aws/aws-controllers-k8s
- https://github.com/aws-controllers-k8s/dynamodb-controller
maintainers:
- name: ACK Admins
url: https://github.com/orgs/aws/teams/aws-controllers-for-kubernetes-ack-admins
url: https://github.com/orgs/aws-controllers-k8s/teams/ack-admin
- name: dynamodb Admins
url: https://github.com/orgs/aws-controllers-k8s/teams/dynamodb-maintainer
keywords:
- aws
- kubernetes
Expand Down
22 changes: 18 additions & 4 deletions helm/crds/dynamodb.services.k8s.aws_backups.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,13 @@ spec:
metadata:
type: object
spec:
description: BackupSpec defines the desired state of Backup
description: BackupSpec defines the desired state of Backup.
properties:
backupName:
description: Specified name for the backup.
type: string
tableName:
description: The name of the table.
type: string
required:
- backupName
Expand Down Expand Up @@ -71,17 +73,32 @@ spec:
- ownerAccountID
type: object
backupCreationDateTime:
description: Time at which the backup was created. This is the request
time of the backup.
format: date-time
type: string
backupExpiryDateTime:
description: Time at which the automatic on-demand backup created
by DynamoDB will expire. This SYSTEM on-demand backup expires automatically
35 days after its creation.
format: date-time
type: string
backupSizeBytes:
description: Size of the backup in bytes.
format: int64
type: integer
backupStatus:
description: 'Backup can be in one of the following states: CREATING,
ACTIVE, DELETED.'
type: string
backupType:
description: "BackupType: \n * USER - You create and manage these
using the on-demand backup feature. \n * SYSTEM - If you delete
a table with point-in-time recovery enabled, a SYSTEM backup
is automatically created and is retained for 35 days (at no additional
cost). System backups allow you to restore the deleted table to
the state it was in just before the point of deletion. \n * AWS_BACKUP
- On-demand backup created by you from AWS Backup service."
type: string
conditions:
description: All CRS managed by ACK have a common `Status.Conditions`
Expand Down Expand Up @@ -116,9 +133,6 @@ spec:
- type
type: object
type: array
required:
- ackResourceMetadata
- conditions
type: object
type: object
served: true
Expand Down
14 changes: 10 additions & 4 deletions helm/crds/dynamodb.services.k8s.aws_globaltables.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,16 @@ spec:
metadata:
type: object
spec:
description: GlobalTableSpec defines the desired state of GlobalTable
description: "GlobalTableSpec defines the desired state of GlobalTable.
\n Represents the properties of a global table."
properties:
globalTableName:
description: The global table name.
type: string
replicationGroup:
description: The Regions where the global table needs to be created.
items:
description: Represents the properties of a replica.
properties:
regionName:
type: string
Expand Down Expand Up @@ -109,13 +113,15 @@ spec:
type: object
type: array
creationDateTime:
description: The creation time of the global table.
format: date-time
type: string
globalTableStatus:
description: "The current state of the global table: \n * CREATING
- The global table is being created. \n * UPDATING - The global
table is being updated. \n * DELETING - The global table is being
deleted. \n * ACTIVE - The global table is ready for use."
type: string
required:
- ackResourceMetadata
- conditions
type: object
type: object
served: true
Expand Down
Loading

0 comments on commit 4a48dcb

Please sign in to comment.