Skip to content

Commit 5ee1748

Browse files
committed
Fix some typos on the docs
1 parent 9134bdc commit 5ee1748

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
## Installation
3737

3838
```sh
39-
$ brew install velero
40-
$ helm repo add vmware-tanzu https://vmware-tanzu.github.io/helm-charts
39+
brew install velero
40+
helm repo add vmware-tanzu https://vmware-tanzu.github.io/helm-charts
4141
```
4242

4343
## Documentation
@@ -134,14 +134,14 @@ Here's the gist of using it directly from github.
134134
| Name | Description | Type | Default | Required |
135135
|------|-------------|------|---------|:--------:|
136136
| app | A Release is an instance of a chart running in a Kubernetes cluster. | `map` | `{}` | no |
137-
| app\_deploy | whther or not to deploy app | `bool` | `true` | no |
137+
| app\_deploy | Whether or not to deploy app | `bool` | `true` | no |
138138
| bucket | Backup and Restore bucket. | `string` | n/a | yes |
139139
| cluster\_name | Cluster name. | `string` | n/a | yes |
140140
| description | Namespace description | `string` | `"velero-back-up-and-restore"` | no |
141-
| iam\_deploy | whther or not to deploy iam role | `bool` | `true` | no |
141+
| iam\_deploy | Whether or not to deploy iam role | `bool` | `true` | no |
142142
| iam\_role\_name | Name of the Velero IAM role | `string` | `""` | no |
143-
| name | namespace name | `string` | `"velero"` | no |
144-
| namespace\_deploy | whther or not to deploy namespace | `bool` | `false` | no |
143+
| name | Namespace name | `string` | `"velero"` | no |
144+
| namespace\_deploy | Whether or not to deploy namespace | `bool` | `false` | no |
145145
| openid\_connect\_provider\_uri | OpenID Connect Provider for EKS to enable IRSA. | `string` | n/a | yes |
146146
| repository | VMware Tanzu repository for Helm repos. | `string` | `"https://vmware-tanzu.github.io/helm-charts"` | no |
147147
| tags | A mapping of tags to assign to the object. | `map` | `{}` | no |
@@ -159,19 +159,19 @@ Here's the gist of using it directly from github.
159159

160160
<!-- START makefile-doc -->
161161
```
162-
$ make help
162+
$ make help
163163
hooks Commit hooks setup
164164
validate Validate with pre-commit hooks
165-
changelog Update changelog
165+
changelog Update changelog
166166
```
167167
<!-- END makefile-doc -->
168168

169169
### :memo: Guidelines
170170

171-
- :memo: Use a succinct title and description.
172-
- :bug: Bugs & feature requests can be be opened
173-
- :signal_strength: Support questions are better asked on [Stack Overflow](https://stackoverflow.com/)
174-
- :blush: Be nice, civil and polite ([as always](http://contributor-covenant.org/version/1/4/)).
171+
- :memo: Use a succinct title and description.
172+
- :bug: Bugs & feature requests can be be opened
173+
- :signal_strength: Support questions are better asked on [Stack Overflow](https://stackoverflow.com/)
174+
- :blush: Be nice, civil and polite ([as always](http://contributor-covenant.org/version/1/4/)).
175175

176176
## License
177177

variables.tf

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ variable "cluster_name" {
55

66
variable "namespace_deploy" {
77
default = false
8-
description = "whther or not to deploy namespace"
8+
description = "Whether or not to deploy namespace"
99
type = bool
1010
}
1111

1212
variable "app_deploy" {
1313
default = true
14-
description = "whther or not to deploy app"
14+
description = "Whether or not to deploy app"
1515
type = bool
1616
}
1717

@@ -23,7 +23,7 @@ variable "iam_deploy" {
2323

2424
variable "name" {
2525
default = "velero"
26-
description = "namespace name"
26+
description = "Namespace name"
2727
type = string
2828
}
2929

@@ -41,7 +41,7 @@ variable "openid_connect_provider_uri" {
4141
variable "tags" {
4242
default = {}
4343
description = "A mapping of tags to assign to the object."
44-
type = map
44+
type = map(any)
4545
}
4646

4747
variable "repository" {
@@ -57,7 +57,7 @@ variable "values" {
5757

5858
variable "app" {
5959
description = "A Release is an instance of a chart running in a Kubernetes cluster."
60-
type = map
60+
type = map(any)
6161
default = {}
6262
}
6363

0 commit comments

Comments
 (0)