Oleksandr Savatieiev | 0f77e14 | 2018-11-23 17:52:01 +0100 | [diff] [blame] | 1 | # CI Checker |
| 2 | # Environment file example |
| 3 | |
| 4 | # Either open a tunnel from your hosts using |
| 5 | # 'ssh -L 16969:<cfg-IP>:6969 <user>@<lab-IP>' |
| 6 | # Or run it from within a cloud |
| 7 | |
| 8 | # Not used so far, reserved |
| 9 | # CI_TESTS_WORK_DIR= |
| 10 | |
| 11 | # Main log file of the tests |
| 12 | CEE8_LOGFILE = 'ci_checker.log' |
| 13 | |
| 14 | # Salt master host to connect to |
| 15 | SALT_URL=127.0.0.1 |
| 16 | |
| 17 | # Salt master port. |
Alex Savatieiev | d48994d | 2018-12-13 12:13:00 +0100 | [diff] [blame^] | 18 | # Note that you can safely execute second master (not on production) |
Oleksandr Savatieiev | 0f77e14 | 2018-11-23 17:52:01 +0100 | [diff] [blame] | 19 | # on the same cfg node with diferent port and set logging to ALL |
| 20 | SALT_PORT=16969 |
| 21 | |
| 22 | # User and password to auth on master. Can be found in /srv/salt/... |
| 23 | SALT_USER=salt |
| 24 | SALT_PASSWORD=***** |
| 25 | |
| 26 | # default timeout for salt calls |
| 27 | SALT_TIMEOUT=30 |
| 28 | |
| 29 | # Folder where salt points its filesystem: salt:// |
| 30 | SALT_FILE_ROOT=/usr/share/salt-formulas/env/ |
| 31 | |
| 32 | # Subfolder with scripts to be uploaded |
| 33 | SALT_SCRIPTS_FOLDER=test_scripts |
| 34 | |
| 35 | # All nodes list file overide |
| 36 | SALT_NODE_LIST_FILE=etc/example._list |