Alex | f3dbe86 | 2019-10-07 15:17:04 -0500 | [diff] [blame^] | 1 | # Cfg 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 | # Main log file of the tests |
| 9 | LOGFILE = 'qa-lab.log' |
| 10 | |
| 11 | # SSH is used when environment is not local to get salt password |
| 12 | # in order set options and user for the ssh, |
| 13 | # please, use ~/.ssh/config |
| 14 | # SSH hostname of salt master node |
| 15 | SSH_KEY=/Users/savex/.ssh/id_rsa |
| 16 | SSH_USER=osavatieiev |
| 17 | SSH_HOST=172.16.242.122 |
| 18 | |
| 19 | # Salt master host to connect to |
| 20 | SALT_URL=172.16.242.122 |
| 21 | |
| 22 | # Salt master port. |
| 23 | # Note that you can safely execute second master (not on production) |
| 24 | # on the same cfg node with diferent port and set logging to ALL |
| 25 | SALT_PORT=6969 |
| 26 | |
| 27 | # User and password to auth on master. Can be found in /srv/salt/... |
| 28 | SALT_USER=salt |
| 29 | |
| 30 | # default timeout for salt calls |
| 31 | SALT_TIMEOUT=30 |
| 32 | |
| 33 | # Folder where salt points its filesystem: salt:// |
| 34 | SALT_FILE_ROOT=/usr/share/salt-formulas/env/ |
| 35 | |
| 36 | # Subfolder with scripts to be uploaded |
| 37 | SALT_SCRIPTS_FOLDER=test_scripts |
| 38 | |
| 39 | # All nodes list file overide |
| 40 | SALT_NODE_LIST_FILE=etc/qa-lab.list |