diff --git a/charts/stash-mongodb/README.md b/charts/stash-mongodb/README.md index b9825e998..716d0c042 100644 --- a/charts/stash-mongodb/README.md +++ b/charts/stash-mongodb/README.md @@ -51,7 +51,7 @@ The following table lists the configurable parameters of the `stash-mongodb` cha | image.registry | Docker registry used to pull MongoDB addon image | `stashed` | | image.repository | Docker image used to backup/restore MongoDB database | `stash-mongodb` | | image.tag | Tag of the image that is used to backup/restore MongoDB database. This is usually same as the database version it can backup. | `"4.0.5"` | -| backup.args | Arguments to pass to `mongodump` command during bakcup process | `""` | +| backup.args | Arguments to pass to `mongodump` command during backup process | `""` | | restore.args | Arguments to pass to `mongorestore` command during restore process | `""` | | maxConcurrency | Maximum concurrency to perform backup or restore tasks | `3` | diff --git a/charts/stash-mongodb/values.yaml b/charts/stash-mongodb/values.yaml index 350d3b549..ffb11e845 100644 --- a/charts/stash-mongodb/values.yaml +++ b/charts/stash-mongodb/values.yaml @@ -18,7 +18,7 @@ image: # optional argument to send mongodump or mongorestore command backup: - # Arguments to pass to `mongodump` command during bakcup process + # Arguments to pass to `mongodump` command during backup process args: "" restore: # Arguments to pass to `mongorestore` command during restore process diff --git a/docs/mongodb-sharding.md b/docs/mongodb-sharding.md index 0e0b09751..18fb526ad 100644 --- a/docs/mongodb-sharding.md +++ b/docs/mongodb-sharding.md @@ -4,7 +4,7 @@ description: Backup and restore sharded MongoDB cluster using Stash menu: docs_{{ .version }}: identifier: sharded-mongodb-{{ .subproject_version }} - name: MongoDB Shareded Cluster + name: MongoDB Sharded Cluster parent: stash-mongodb-guides-{{ .subproject_version }} weight: 30 product_name: stash diff --git a/docs/mongodb.md b/docs/mongodb.md index 57f78c5ed..84307b28f 100644 --- a/docs/mongodb.md +++ b/docs/mongodb.md @@ -236,7 +236,7 @@ spec: secret: name: my-database-credentials-secret # type field is optional. you can keep it empty. - # if you keep it emtpty then the value of TARGET_APP_RESOURCE variable + # if you keep it empty then the value of TARGET_APP_RESOURCE variable # will be set to "appbinding" during auto-backup. type: mongodb ```