diff --git a/charts/stash-mongodb/README.md b/charts/stash-mongodb/README.md index 290b5e500..6f24595a1 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.1.4"` | -| 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 5c5624baf..7207cfff6 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 718c27188..0c1596a09 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 d696637f2..0762466a8 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 ```