From 7e0a42bd7af7cef1e56ccd616240645fc41300bf Mon Sep 17 00:00:00 2001 From: Endre Czirbesz Date: Fri, 8 May 2020 20:21:48 +0100 Subject: [PATCH] Fix typos Signed-off-by: Endre Czirbesz --- charts/stash-mongodb/README.md | 2 +- charts/stash-mongodb/values.yaml | 2 +- docs/mongodb-sharding.md | 2 +- docs/mongodb.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/stash-mongodb/README.md b/charts/stash-mongodb/README.md index 400d6dd75..f029de6e3 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. | `"3.6.8"` | -| 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 44a258dcd..0a196f640 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 8170dd36d..a882a1dcf 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 0cff5d022..c94283981 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 ```