Skip to content

Commit

Permalink
Fix typo in json tag
Browse files Browse the repository at this point in the history
  • Loading branch information
AMecea authored and calind committed Jun 4, 2019
1 parent 3a36f42 commit 6c8f619
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions config/crds/mysql_v1alpha1_mysqlcluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ spec:
type: object
spec:
properties:
backupRemoteDeletePolicy:
description: BackupRemoteDeletePolicy the deletion policy that specify
how to treat the data from remote storage. By default it's used softDelete.
type: string
backupSchedule:
description: Specify under crontab format interval to take backups leave
it empty to deactivate the backup process Defaults to ""
Expand All @@ -48,10 +52,6 @@ spec:
backupURL:
description: Represents an URL to the location where to put backups.
type: string
backupRemoteDeletePolicy:
description: RemoteDeletePolicy the deletion policy that specify how
to treat the data from remote storage. By default it's used softDelete.
type: string
image:
description: To specify the image that will be used for mysql server
container. If this is specified then the mysqlVersion is ignored.
Expand Down
2 changes: 1 addition & 1 deletion pkg/apis/mysql/v1alpha1/mysqlcluster_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ type MysqlClusterSpec struct {
// BackupRemoteDeletePolicy the deletion policy that specify how to treat the data from remote storage. By
// default it's used softDelete.
// +optional
BackupRemoteDeletePolicy DeletePolicy `json:"remoteDeletePolicy,omitempty"`
BackupRemoteDeletePolicy DeletePolicy `json:"backupRemoteDeletePolicy,omitempty"`

// Represents the name of the secret that contains credentials to connect to
// the storage provider to store backups.
Expand Down

0 comments on commit 6c8f619

Please sign in to comment.