File tree 4 files changed +97
-30
lines changed
4 files changed +97
-30
lines changed Original file line number Diff line number Diff line change @@ -208,7 +208,7 @@ type E2EConfig struct {
208
208
InstallLoki bool `yaml:"installLoki" env-default:"true" env:"install_loki"`
209
209
InstallHaModeEtcd bool `yaml:"installHaModeEtcd" env-default:"false" env:"e2e_etcd_ha_mode"`
210
210
LokiStatefulsetOnControlNode bool `yaml:"lokiOnControlNode" env-default:"true" env:"loki_on_control_node"`
211
- E2eFioImage string `yaml:"e2eFioImage" env-default:"openebs/e2e-fio:v3.38-e2e-0 " env:"e2e_fio_image"`
211
+ E2eFioImage string `yaml:"e2eFioImage" env-default:"openebs/e2e-fio:v3.38-e2e-1 " env:"e2e_fio_image"`
212
212
SetSafeMountAlways bool `yaml:"setSafeMountAlways" env-default:"false" env:"safe_mount_always"`
213
213
// This is an advisory setting for individual tests
214
214
// If set to true - typically during test development - tests with multiple 'It' clauses should defer asserts till after
Original file line number Diff line number Diff line change 1
- # Mayastor E2E fio test pod
1
+ # Mayastor E2E fio test pod image
2
2
## Introduction
3
- Derived from ` dmonakhov/alpine-fio `
3
+ This image is derived from ` alpine `
4
+
5
+ It includes fio, which is invoked by the wrapper program ` e2e_fio `
6
+
7
+ e2e_fio is written in C to facilitate low level control and to keep the size small.
8
+ Reduced size makes it possible to run more instances of the test pod with a given memory constraint.
4
9
5
10
### Command line options
6
11
* ` sleep <sleep seconds> ; `
@@ -41,8 +46,6 @@ Thus allows developer to exec a shell on the pod and examine the pod.
41
46
42
47
Execution will only complete after all forked processes (if any) have completed as well as inline sleep and signal generation actions.
43
48
44
- For legacy compatibility where implicit start of a new option is detected
45
-
46
49
### Exit value
47
50
* If ` exitv ` is specified that is * always* returned.
48
51
* 0 if all instances of forked processes ran successfully exit value is 0
Original file line number Diff line number Diff line change 11
11
# existing semantics.
12
12
set -e
13
13
IMAGE=" openebs/e2e-fio"
14
- TAG=" v3.38-e2e-0 "
14
+ TAG=" v3.38-e2e-1 "
15
15
registry=" "
16
16
tag_as_latest=" "
17
17
You can’t perform that action at this time.
0 commit comments