forked from intel/workload-services-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-config.yaml.j2
More file actions
26 lines (25 loc) · 873 Bytes
/
docker-config.yaml.j2
File metadata and controls
26 lines (25 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#
# This is a docker configuration that supports simple dockerized workload
# execution on multiple SUTs. The top level keys are the SUT names. The
# values are a list of containers running on the SUTs.
#
# Each container configuration defines the docker image name, the docker
# runtime options (either a string or a list), and whether logs should be
# collected after the workload execution.
#
# The container execution order is not enforced. The workload must implement
# alternative means to enforce the execution order, if required.
#
#
# Apache v2 license
# Copyright (C) 2023 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
#
worker-0:
- image: "{{ REGISTRY }}dummy{{ IMAGESUFFIX }}{{ RELEASE }}"
options:
- -e SCALE={{ SCALE }}
- -e RETURN_VALUE={{ RETURN_VALUE }}
- -e SLEEP_TIME={{ SLEEP_TIME }}
- -e ROI={{ ROI }}
export-logs: true