Skip to content

Commit a27b618

Browse files
authored
chore: Fixes probe run properties and headings (#261)
Signed-off-by: neelanjan00 <[email protected]>
1 parent 67ae0c3 commit a27b618

File tree

4 files changed

+49
-49
lines changed

4 files changed

+49
-49
lines changed

website/docs/concepts/probes.md

+23-23
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ Some common attributes shared between the Probes:
3535

3636
- **probeTimeout**: Represents the time limit for the probe to execute the check specified and return the expected data.
3737
- **retry**: The number of times a check is re-run upon failure in the first attempt before declaring the probe status as failed.
38-
- **interval**: The period between subsequent retries
39-
- **probePollingInterval**: The time interval for which continuous probe should be sleep after each iteration
40-
- **initialDelaySeconds**: Represents the initial waiting time interval for the probes.
41-
- **stopOnFailure**: It can be set to true/false to stop or continue the fault execution after probe fails
38+
- **interval**: The period between subsequent retries.
39+
- **probePollingInterval**: The time interval for which continuous probe should be sleep after each iteration.
40+
- **initialDelay**: Represents the initial waiting time interval for the probes.
41+
- **stopOnFailure**: It can be set to true/false to stop or continue the fault execution after probe fails.
4242

4343
:::note
4444
If probe needs any additional RBAC permissions other than the fault's serviceAccount `(<fault-name>-sa)` permissions, then the additional permissions should be provided inside the corresponding Role/ClusterRole bind with the serviceAccount `(<fault-name>-sa)`.
@@ -73,10 +73,10 @@ probe:
7373
responseCode: '<response code>'
7474
mode: 'Continuous'
7575
runProperties:
76-
probeTimeout: 5
77-
interval: 5
76+
probeTimeout: 5s
77+
interval: 5s
7878
retry: 1
79-
probePollingInterval: 2
79+
probePollingInterval: 2s
8080
```
8181
8282
The `httpProbe` is better used in the Continuous mode of operation as a parallel liveness indicator of a target or downstream application. It uses the `probePollingInterval` property to specify the polling interval for the access checks.
@@ -104,10 +104,10 @@ probe:
104104
hostNetwork: false
105105
mode: 'Edge'
106106
runProperties:
107-
probeTimeout: 5
108-
interval: 5
107+
probeTimeout: 5s
108+
interval: 5s
109109
retry: 1
110-
initialDelaySeconds: 5
110+
initialDelay: 5s
111111
```
112112

113113
> `source.hostNetwork` can be set to `true` to allow access to the node network namespace for the pod executing the probe
@@ -137,8 +137,8 @@ probe:
137137
operation: 'present' # it can be present, absent, create, delete
138138
mode: 'EOT'
139139
runProperties:
140-
probeTimeout: 5
141-
interval: 5
140+
probeTimeout: 5s
141+
interval: 5s
142142
retry: 1
143143
```
144144

@@ -162,8 +162,8 @@ probe:
162162
value: '<value-for-criteria-match>'
163163
mode: 'Edge'
164164
runProperties:
165-
probeTimeout: 5
166-
interval: 5
165+
probeTimeout: 5s
166+
interval: 5s
167167
retry: 1
168168
```
169169

@@ -247,8 +247,8 @@ probe:
247247
source: 'inline'
248248
mode: 'SOT'
249249
runProperties:
250-
probeTimeout: 5
251-
interval: 5
250+
probeTimeout: 5s
251+
interval: 5s
252252
retry: 1
253253
- name: 'probe2'
254254
type: 'cmdProbe'
@@ -262,8 +262,8 @@ probe:
262262
source: 'inline'
263263
mode: 'SOT'
264264
runProperties:
265-
probeTimeout: 5
266-
interval: 5
265+
probeTimeout: 5s
266+
interval: 5s
267267
retry: 1
268268
```
269269

@@ -921,7 +921,7 @@ This section describes the different fields of the litmus probes and the possibl
921921
</tr>
922922
<tr>
923923
<th>Range</th>
924-
<td>n/a <code>type: integer</code></td>
924+
<td>n/a <code>type: string</code></td>
925925
</tr>
926926
<tr>
927927
<th>Notes</th>
@@ -967,7 +967,7 @@ This section describes the different fields of the litmus probes and the possibl
967967
</tr>
968968
<tr>
969969
<th>Range</th>
970-
<td>n/a <code>type: integer</code></td>
970+
<td>n/a <code>type: string</code></td>
971971
</tr>
972972
<tr>
973973
<th>Notes</th>
@@ -990,7 +990,7 @@ This section describes the different fields of the litmus probes and the possibl
990990
</tr>
991991
<tr>
992992
<th>Range</th>
993-
<td>n/a <code>type: integer</code></td>
993+
<td>n/a <code>type: string</code></td>
994994
</tr>
995995
<tr>
996996
<th>Notes</th>
@@ -1001,7 +1001,7 @@ This section describes the different fields of the litmus probes and the possibl
10011001
<table>
10021002
<tr>
10031003
<th>Field</th>
1004-
<td><code>.runProperties.initialDelaySeconds</code></td>
1004+
<td><code>.runProperties.initialDelay</code></td>
10051005
</tr>
10061006
<tr>
10071007
<th>Description</th>
@@ -1013,7 +1013,7 @@ This section describes the different fields of the litmus probes and the possibl
10131013
</tr>
10141014
<tr>
10151015
<th>Range</th>
1016-
<td>n/a <code>type: integer</code></td>
1016+
<td>n/a <code>type: string</code></td>
10171017
</tr>
10181018
<tr>
10191019
<th>Notes</th>

website/docs/user-guides/chaos-infrastructure-installation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: chaos-infrastructure-installation
3-
title: chaos-infrastructure-installation
4-
sidebar_label: chaos-infrastructure-installation
3+
title: Chaos Infrastructure Installation
4+
sidebar_label: Chaos Infrastructure Installation
55
---
66

77
---

website/versioned_docs/version-3.0.0/concepts/probes.md

+22-22
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Some common attributes shared between the Probes:
3737
- **retry**: The number of times a check is re-run upon failure in the first attempt before declaring the probe status as failed.
3838
- **interval**: The period between subsequent retries
3939
- **probePollingInterval**: The time interval for which continuous probe should be sleep after each iteration
40-
- **initialDelaySeconds**: Represents the initial waiting time interval for the probes.
40+
- **initialDelay**: Represents the initial waiting time interval for the probes.
4141
- **stopOnFailure**: It can be set to true/false to stop or continue the fault execution after probe fails
4242

4343
:::note
@@ -73,10 +73,10 @@ probe:
7373
responseCode: '<response code>'
7474
mode: 'Continuous'
7575
runProperties:
76-
probeTimeout: 5
77-
interval: 5
76+
probeTimeout: 5s
77+
interval: 5s
7878
retry: 1
79-
probePollingInterval: 2
79+
probePollingInterval: 2s
8080
```
8181
8282
The `httpProbe` is better used in the Continuous mode of operation as a parallel liveness indicator of a target or downstream application. It uses the `probePollingInterval` property to specify the polling interval for the access checks.
@@ -104,10 +104,10 @@ probe:
104104
hostNetwork: false
105105
mode: 'Edge'
106106
runProperties:
107-
probeTimeout: 5
108-
interval: 5
107+
probeTimeout: 5s
108+
interval: 5s
109109
retry: 1
110-
initialDelaySeconds: 5
110+
initialDelay: 5s
111111
```
112112

113113
> `source.hostNetwork` can be set to `true` to allow access to the node network namespace for the pod executing the probe
@@ -137,8 +137,8 @@ probe:
137137
operation: 'present' # it can be present, absent, create, delete
138138
mode: 'EOT'
139139
runProperties:
140-
probeTimeout: 5
141-
interval: 5
140+
probeTimeout: 5s
141+
interval: 5s
142142
retry: 1
143143
```
144144

@@ -162,8 +162,8 @@ probe:
162162
value: '<value-for-criteria-match>'
163163
mode: 'Edge'
164164
runProperties:
165-
probeTimeout: 5
166-
interval: 5
165+
probeTimeout: 5s
166+
interval: 5s
167167
retry: 1
168168
```
169169

@@ -247,10 +247,10 @@ probe:
247247
source: 'inline'
248248
mode: 'SOT'
249249
runProperties:
250-
probeTimeout: 5
251-
interval: 5
250+
probeTimeout: 5s
251+
interval: 5s
252252
retry: 1
253-
- name: 'probe2'
253+
- name: 'probe2's
254254
type: 'cmdProbe'
255255
cmdProbe/inputs:
256256
## probe1's result being used as one of the args in probe2
@@ -262,8 +262,8 @@ probe:
262262
source: 'inline'
263263
mode: 'SOT'
264264
runProperties:
265-
probeTimeout: 5
266-
interval: 5
265+
probeTimeout: 5s
266+
interval: 5s
267267
retry: 1
268268
```
269269

@@ -921,7 +921,7 @@ This section describes the different fields of the litmus probes and the possibl
921921
</tr>
922922
<tr>
923923
<th>Range</th>
924-
<td>n/a <code>type: integer</code></td>
924+
<td>n/a <code>type: string</code></td>
925925
</tr>
926926
<tr>
927927
<th>Notes</th>
@@ -967,7 +967,7 @@ This section describes the different fields of the litmus probes and the possibl
967967
</tr>
968968
<tr>
969969
<th>Range</th>
970-
<td>n/a <code>type: integer</code></td>
970+
<td>n/a <code>type: string</code></td>
971971
</tr>
972972
<tr>
973973
<th>Notes</th>
@@ -990,7 +990,7 @@ This section describes the different fields of the litmus probes and the possibl
990990
</tr>
991991
<tr>
992992
<th>Range</th>
993-
<td>n/a <code>type: integer</code></td>
993+
<td>n/a <code>type: string</code></td>
994994
</tr>
995995
<tr>
996996
<th>Notes</th>
@@ -1001,7 +1001,7 @@ This section describes the different fields of the litmus probes and the possibl
10011001
<table>
10021002
<tr>
10031003
<th>Field</th>
1004-
<td><code>.runProperties.initialDelaySeconds</code></td>
1004+
<td><code>.runProperties.initialDelay</code></td>
10051005
</tr>
10061006
<tr>
10071007
<th>Description</th>
@@ -1013,11 +1013,11 @@ This section describes the different fields of the litmus probes and the possibl
10131013
</tr>
10141014
<tr>
10151015
<th>Range</th>
1016-
<td>n/a <code>type: integer</code></td>
1016+
<td>n/a <code>type: string</code></td>
10171017
</tr>
10181018
<tr>
10191019
<th>Notes</th>
1020-
<td>The <code>.runProperties.initialDelaySeconds</code> represents the initial waiting time interval for the probes.</td>
1020+
<td>The <code>.runProperties.initialDelay</code> represents the initial waiting time interval for the probes.</td>
10211021
</tr>
10221022
</table>
10231023

website/versioned_docs/version-3.0.0/user-guides/chaos-infrastructure-installation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: chaos-infrastructure-installation
3-
title: chaos-infrastructure-installation
4-
sidebar_label: chaos-infrastructure-installation
3+
title: Chaos Infrastructure Installation
4+
sidebar_label: Chaos Infrastructure Installation
55
---
66

77
---

0 commit comments

Comments
 (0)