Skip to content

Commit 6907d2d

Browse files
committed
spellings
1 parent 4011701 commit 6907d2d

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

api/v1alpha1/endpointmonitor_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ type StatusCakeConfig struct {
195195
// +optional
196196
NodeLocations string `json:"nodeLocations,omitempty"`
197197

198-
// Comma seperated list of HTTP codes to trigger error on
198+
// Comma separated list of HTTP codes to trigger error on
199199
// +optional
200200
StatusCodes string `json:"statusCodes,omitempty"`
201201

bundle/manifests/endpointmonitor.stakater.com_endpointmonitors.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ spec:
161161
description: Enable Real Browser
162162
type: boolean
163163
statusCodes:
164-
description: Comma seperated list of HTTP codes to trigger error
164+
description: Comma separated list of HTTP codes to trigger error
165165
on
166166
type: string
167167
testTags:

charts/ingressmonitorcontroller/crds/endpointmonitor.stakater.com_endpointmonitors.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ spec:
162162
description: Enable Real Browser
163163
type: boolean
164164
statusCodes:
165-
description: Comma seperated list of HTTP codes to trigger error
165+
description: Comma separated list of HTTP codes to trigger error
166166
on
167167
type: string
168168
testTags:

config/crd/bases/endpointmonitor.stakater.com_endpointmonitors.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ spec:
162162
description: Enable Real Browser
163163
type: boolean
164164
statusCodes:
165-
description: Comma seperated list of HTTP codes to trigger error
165+
description: Comma separated list of HTTP codes to trigger error
166166
on
167167
type: string
168168
testTags:

docs/uptimerobot-configuration.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ You will get a response similar to what is shown below
2929
]
3030
```
3131

32-
Copy values of `id` field of your alert contacts which you want to use for Ingress Monitor Controller and append `_0_0` to them and seperate them by `-`. You will now have a string similar to `12345_0_0-23564_0_0`. This is basically the value you will need to specify in Ingress Monitor Controller's ConfigMap as `alertContacts`.
32+
Copy values of `id` field of your alert contacts which you want to use for Ingress Monitor Controller and append `_0_0` to them and separate them by `-`. You will now have a string similar to `12345_0_0-23564_0_0`. This is basically the value you will need to specify in Ingress Monitor Controller's ConfigMap as `alertContacts`.
3333

3434
## Configuration
3535

@@ -82,7 +82,7 @@ You will get a response similar to what is shown below
8282
}
8383
```
8484

85-
Copy values of `id` field of your public status page which you want to use for Ingress Monitor Controller into the relevant EndpointMonitor CR.
85+
Copy values of `id` field of your public status page which you want to use for Ingress Monitor Controller into the relevant EndpointMonitor CR.
8686

8787
### Fetching maintenance windows from UpTime Robot
8888

@@ -121,7 +121,7 @@ You will get a response similar to what is shown below
121121
Copy values of `id` field of the maintenance windows which you want to use for Ingress Monitor Controller and separate them by `-`. You will now have a string similar to `12345-23564`. This is basically the value you will need to specify in the maintenance-windows EndpointMonitor CR.
122122

123123

124-
## Example:
124+
## Example:
125125

126126
```yaml
127127
apiVersion: endpointmonitor.stakater.com/v1alpha1
@@ -139,5 +139,5 @@ spec:
139139
keywordExists: true
140140
keywordValue: 404
141141
statusPages: "status-page"
142-
142+
143143
```

pkg/monitors/pingdom/pingdom-monitor.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ func (service *PingdomMonitorService) addConfigToHttpCheck(httpCheck *pingdom.Ht
248248
log.Info("Should contain detected. Setting Should Contain string: " + providerConfig.ShouldContain)
249249
}
250250

251-
// Tags should be a single word or multiple comma-seperated words
251+
// Tags should be a single word or multiple comma-separated words
252252
if providerConfig != nil && len(providerConfig.Tags) > 0 {
253253
if !strings.Contains(providerConfig.Tags, " ") {
254254
httpCheck.Tags = providerConfig.Tags

0 commit comments

Comments
 (0)