diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2020-08-22 18:41:38 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2020-08-22 18:49:36 +0200 |
commit | 06bd5f7f392781b729b8763d82d728c61ab8a8b7 (patch) | |
tree | 1cb15bf48043266f7ec373ab7402de6ae48bfd65 | |
parent | 57960180aa549b1f4384c5e780d9aecc31ec10a9 (diff) |
Fix last hardcoded concurrencies
Change-Id: Ib2b7bb6de8cd6524fcc52baf48ebf5c4835c396b
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit 8a8f6eafc3c6268a3663852f7de8f0cc4c39b817)
-rw-r--r-- | functest_kubernetes/rally/all-in-one.yaml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/functest_kubernetes/rally/all-in-one.yaml b/functest_kubernetes/rally/all-in-one.yaml index ae4157ff..2318fc22 100644 --- a/functest_kubernetes/rally/all-in-one.yaml +++ b/functest_kubernetes/rally/all-in-one.yaml @@ -121,8 +121,8 @@ subtasks: error_regexp: No such file runner: constant: - concurrency: 1 - times: 1 + concurrency: {{ concurrency }} + times: {{ times }} contexts: namespaces: count: {{ namespaces_count }} @@ -184,8 +184,8 @@ subtasks: volume_path: /tmp/ runner: constant: - concurrency: 1 - times: 1 + concurrency: {{ concurrency }} + times: {{ times }} contexts: namespaces: count: {{ namespaces_count }} @@ -233,8 +233,8 @@ subtasks: error_regexp: No such file runner: constant: - concurrency: 1 - times: 1 + concurrency: {{ concurrency }} + times: {{ times }} contexts: namespaces: count: {{ namespaces_count }} @@ -349,8 +349,8 @@ subtasks: custom_endpoint: true runner: constant: - concurrency: 1 - times: 1 + concurrency: {{ concurrency }} + times: {{ times }} contexts: namespaces: count: {{ namespaces_count }} |