blob: bf55206a30f43a943a58c787631760ec1d68c149 [file] [log] [blame]
Alex Savatieiev63576832019-02-27 15:46:26 -06001# Salt Cfg Checker
2# Local Environment file
3
4# Main log file of the tests
Alex9a4ad212020-10-01 18:04:25 -05005MCP_LOGFILE = '/var/log/salt-cfg-checker.log'
Alex Savatieiev63576832019-02-27 15:46:26 -06006
7# Salt master host to connect to
Alex9a4ad212020-10-01 18:04:25 -05008MCP_ENV_HOST=127.0.0.1
Alex Savatieiev63576832019-02-27 15:46:26 -06009# Salt master port.
10# Note that you can safely execute second master (not on production)
11# on the same cfg node with diferent port and set logging to ALL
Alex9a4ad212020-10-01 18:04:25 -050012MCP_SALT_PORT=6969
13
14
15### Salt type section
16# All vars should start with SALT
Alex Savatieiev63576832019-02-27 15:46:26 -060017
18# User and password to auth on master. Can be found in /srv/salt/...
19# No need for a password if environment is local
20SALT_USER=salt
21
22# default timeout for salt calls
23SALT_TIMEOUT=30
24
25# Folder where salt points its filesystem: salt://
26SALT_FILE_ROOT=/usr/share/salt-formulas/env/
27
28# Subfolder with scripts to be uploaded
29SALT_SCRIPTS_FOLDER=salt-cfg-scripts
30
31# All nodes list file overide
32# Can be set to 'auto' for automatic collection
33# or check the example in 'etc/example._list'
34SALT_NODE_LIST_FILE=auto
Alex9a4ad212020-10-01 18:04:25 -050035
36### K8s section
37# All vars start with KUBE
38KUBE_CONFIG_ROOT=/root
39KUBE_SCRIPTS_FOLDER=cfg-checker-scripts
40KUBE_NODE_USER=ubuntu
41KUBE_NODE_KEYPATH=/home/ubuntu/node_key.rsa