Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Silence nil value warning in helm3 #5484

Merged
merged 1 commit into from
Dec 1, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions helm/vitess/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,43 +33,43 @@ config:

# choose a backup service - valid values are gcs/s3
# TODO: add file and ceph support
# backup_storage_implementation: gcs
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is going to change the default behavior to be gcs by default. I would prefer if by default we just didn't configure backups.

backup_storage_implementation: gcs

#########
# gcs settings
#########

# Google Cloud Storage bucket to use for backups
# gcs_backup_storage_bucket: vitess-backups
gcs_backup_storage_bucket: vitess-backups

# root prefix for all backup-related object names
# gcs_backup_storage_root: vtbackups
gcs_backup_storage_root: vtbackups

# secret that contains Google service account json with read/write access to the bucket
# kubectl create secret generic vitess-backups-creds --from-file=gcp-creds.json
# can be omitted if running on a GCE/GKE node with default permissions
# gcsSecret: vitess-gcs-creds
gcsSecret: vitess-gcs-creds

#########
# s3 settings
#########

# AWS region to use
# s3_backup_aws_region: us-east-1
s3_backup_aws_region: us-east-1

# S3 bucket to use for backups
# s3_backup_storage_bucket: vitess-backups
s3_backup_storage_bucket: vitess-backups

# root prefix for all backup-related object names
# s3_backup_storage_root: vtbackups
s3_backup_storage_root: vtbackups

# server-side encryption algorithm (e.g., AES256, aws:kms)
# s3_backup_server_side_encryption: AES256
s3_backup_server_side_encryption: AES256

# secret that contains AWS S3 credentials file with read/write access to the bucket
# kubectl create secret generic s3-credentials --from-file=s3-creds
# can be omitted if running on a node with default permissions
# s3Secret: vitess-s3-creds
s3Secret: vitess-s3-creds

topology:
globalCell:
Expand Down