diff --git a/charts/mgob/README.md b/charts/mgob/README.md index 65ee81b..97c18c1 100644 --- a/charts/mgob/README.md +++ b/charts/mgob/README.md @@ -1,6 +1,6 @@ # mgob -![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) +![Version: 1.1.0](https://img.shields.io/badge/Version-1.1.0-informational?style=flat-square) MongoDB dockerized backup agent. Runs scheduled backups with retention, S3 & SFTP upload, notifications, instrumentation with Prometheus and more. @@ -23,7 +23,7 @@ Runs scheduled backups with retention, S3 & SFTP upload, notifications, instrume | env | object | `{}` | | | image.pullPolicy | string | `"IfNotPresent"` | Image pull policy | | image.repository | string | `"stefanprodan/mgob"` | Image repo | -| image.tag | float | `1.1` | Image tag | +| image.tag | float | `1.3` | Image tag | | replicaCount | int | `1` | Number of replicas | | resources | object | `{"limits":{"cpu":"100m","memory":"128Mi"},"requests":{"cpu":"100m","memory":"128Mi"}}` | Resource requests and limits ref: http://kubernetes.io/docs/user-guide/compute-resources/ | | secret | object | `{}` | Secret(s) to mount. For details, see [values.yaml](values.yaml) | diff --git a/charts/mgob/values.yaml b/charts/mgob/values.yaml index ca57f74..9370f53 100644 --- a/charts/mgob/values.yaml +++ b/charts/mgob/values.yaml @@ -64,6 +64,18 @@ config: {} # password: "secret" # # add custom params to mongodump (eg. Auth or SSL support), leave blank if not needed # params: "--ssl --authenticationDatabase admin" +# # Encryption (optional) +# encryption: +# # At the time being, only gpg asymmetric encryption is supported +# # Public key file or at least one recipient is mandatory +# gpg: +# # optional path to a public key file, only the first key is used. +# keyFile: /secret/mgob-key/key.pub +# # optional key server, defaults to hkps://keys.openpgp.org +# keyServer: hkps://keys.openpgp.org +# # optional list of recipients, they will be looked up on key server +# recipients: +# - example@example.com # # S3 upload (optional) # s3: # url: "https://play.minio.io:9000"