blob: 1a8c472e7e0c7a0ffad3c2fed7e326a8bae3f644 [file] [log] [blame]
Alex Savatieiev5118de02019-02-20 15:50:42 -06001# Cfg Checker
Oleksandr Savatieiev0f77e142018-11-23 17:52:01 +01002# 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
Oleksandr Savatieiev0f77e142018-11-23 17:52:01 +01008# Main log file of the tests
Alex Savatieiev5118de02019-02-20 15:50:42 -06009LOGFILE = 'cfg_checker.log'
Oleksandr Savatieiev0f77e142018-11-23 17:52:01 +010010
Alex Savatieiev63576832019-02-27 15:46:26 -060011# 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
15SSH_KEY=<ssh_keyfile_path>
16SSH_USER=<ssh_user>
17SSH_HOST=<ssh_hostname>
18
Oleksandr Savatieiev0f77e142018-11-23 17:52:01 +010019# Salt master host to connect to
20SALT_URL=127.0.0.1
21
22# Salt master port.
Alex Savatieievd48994d2018-12-13 12:13:00 +010023# Note that you can safely execute second master (not on production)
Oleksandr Savatieiev0f77e142018-11-23 17:52:01 +010024# on the same cfg node with diferent port and set logging to ALL
Alex Savatieiev63576832019-02-27 15:46:26 -060025SALT_PORT=6969
Oleksandr Savatieiev0f77e142018-11-23 17:52:01 +010026
27# User and password to auth on master. Can be found in /srv/salt/...
28SALT_USER=salt
Oleksandr Savatieiev0f77e142018-11-23 17:52:01 +010029
30# default timeout for salt calls
31SALT_TIMEOUT=30
32
33# Folder where salt points its filesystem: salt://
34SALT_FILE_ROOT=/usr/share/salt-formulas/env/
35
36# Subfolder with scripts to be uploaded
37SALT_SCRIPTS_FOLDER=test_scripts
38
39# All nodes list file overide
40SALT_NODE_LIST_FILE=etc/example._list