28 lines
846 B
YAML
28 lines
846 B
YAML
# Configuration for setting up profiles for a simulation or test run.
|
|
# This file is used by the `bin/ytops-client setup-profiles` command.
|
|
# It contains separate blocks for authentication and download simulations.
|
|
|
|
simulation_parameters:
|
|
# --- Common Redis settings for all tools ---
|
|
# The environment name ('env') is now specified in each setup block below.
|
|
env_file: ".env" # Optional: path to a .env file.
|
|
|
|
# --- Profile setup for the AUTHENTICATION simulation ---
|
|
auth_profile_setup:
|
|
env: "sim_auth"
|
|
cleanup_before_run: true
|
|
pools:
|
|
- prefix: "user1"
|
|
proxy: "sslocal-rust-1092:1092"
|
|
count: 4
|
|
|
|
# --- Profile setup for the DOWNLOAD simulation ---
|
|
download_profile_setup:
|
|
env: "sim_download"
|
|
cleanup_before_run: true
|
|
pools:
|
|
- prefix: "user1"
|
|
proxy: "sslocal-rust-1092:1092"
|
|
count: 4
|
|
|