|
1 | 1 | # If no output is detected from ansible in this number of seconds the execution will |
2 | 2 | # be terminated. |
3 | | -idle_timeout: ${RUNNER_IDLE_TIMEOUT:-600} |
| 3 | +idle_timeout: ${RUNNER_IDLE_TIMEOUT} |
4 | 4 | # The maximum amount of time to allow the job to run for, exceeding this and the |
5 | 5 | # execution will be terminated. |
6 | | -job_timeout: ${RUNNER_JOB_TIMEOUT:-3600} |
| 6 | +job_timeout: ${RUNNER_JOB_TIMEOUT} |
7 | 7 |
|
8 | 8 | # Number of seconds for the internal pexpect command to wait to block on |
9 | 9 | # input before continuing. |
10 | | -pexpect_timeout: ${RUNNER_PEXPECT_TIMEOUT:-10} |
| 10 | +pexpect_timeout: ${RUNNER_PEXPECT_TIMEOUT} |
11 | 11 | # Use poll() function for communication with child processes instead of select(). |
12 | 12 | # select() is used when the value is set to False. select() has a known limitation of |
13 | 13 | # using only up to 1024 file descriptors. |
14 | | -pexpect_use_poll: ${RUNNER_PEXPECT_USE_POLL:-True} |
| 14 | +pexpect_use_poll: ${RUNNER_PEXPECT_USE_POLL} |
15 | 15 |
|
16 | 16 | # Allow output from ansible to not be streamed to the stdout or stderr files inside |
17 | 17 | # of the artifacts directory. |
18 | | -suppress_output_file: ${RUNNER_SUPPRESS_OUTPUT_FILE:-False} |
| 18 | +suppress_output_file: ${RUNNER_SUPPRESS_OUTPUT_FILE} |
19 | 19 | # Allow output from ansible to not be printed to the screen. |
20 | | -suppress_ansible_output: ${RUNNER_SUPPRESS_ANSIBLE_OUTPUT:-False} |
| 20 | +suppress_ansible_output: ${RUNNER_SUPPRESS_ANSIBLE_OUTPUT} |
21 | 21 |
|
22 | 22 | # The directory relative to artifacts where jsonfile fact caching will be stored. |
23 | 23 | # Defaults to fact_cache. This is ignored if fact_cache_type is different than jsonfile. |
24 | | -fact_cache: ${RUNNER_FACT_CACHE:-'fact_cache'} |
| 24 | +fact_cache: ${RUNNER_FACT_CACHE} |
25 | 25 | # The type of fact cache to use. Defaults to jsonfile. |
26 | | -fact_cache_type: ${RUNNER_FACT_CACHE_TYPE:-'jsonfile'} |
| 26 | +fact_cache_type: ${RUNNER_FACT_CACHE_TYPE} |
0 commit comments