Alex Savatieiev | 6357683 | 2019-02-27 15:46:26 -0600 | [diff] [blame] | 1 | # Salt Cfg Checker |
| 2 | # Local Environment file |
| 3 | |
| 4 | # Main log file of the tests |
Alex | 9a4ad21 | 2020-10-01 18:04:25 -0500 | [diff] [blame] | 5 | MCP_LOGFILE = '/var/log/salt-cfg-checker.log' |
Alex Savatieiev | 6357683 | 2019-02-27 15:46:26 -0600 | [diff] [blame] | 6 | |
| 7 | # Salt master host to connect to |
Alex | 9a4ad21 | 2020-10-01 18:04:25 -0500 | [diff] [blame] | 8 | MCP_ENV_HOST=127.0.0.1 |
Alex Savatieiev | 6357683 | 2019-02-27 15:46:26 -0600 | [diff] [blame] | 9 | # 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 |
Alex | 9a4ad21 | 2020-10-01 18:04:25 -0500 | [diff] [blame] | 12 | MCP_SALT_PORT=6969 |
| 13 | |
| 14 | |
| 15 | ### Salt type section |
| 16 | # All vars should start with SALT |
Alex Savatieiev | 6357683 | 2019-02-27 15:46:26 -0600 | [diff] [blame] | 17 | |
| 18 | # User and password to auth on master. Can be found in /srv/salt/... |
| 19 | # No need for a password if environment is local |
| 20 | SALT_USER=salt |
| 21 | |
| 22 | # default timeout for salt calls |
| 23 | SALT_TIMEOUT=30 |
| 24 | |
| 25 | # Folder where salt points its filesystem: salt:// |
| 26 | SALT_FILE_ROOT=/usr/share/salt-formulas/env/ |
| 27 | |
| 28 | # Subfolder with scripts to be uploaded |
| 29 | SALT_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' |
| 34 | SALT_NODE_LIST_FILE=auto |
Alex | 9a4ad21 | 2020-10-01 18:04:25 -0500 | [diff] [blame] | 35 | |
| 36 | ### K8s section |
| 37 | # All vars start with KUBE |
| 38 | KUBE_CONFIG_ROOT=/root |
| 39 | KUBE_SCRIPTS_FOLDER=cfg-checker-scripts |
| 40 | KUBE_NODE_USER=ubuntu |
| 41 | KUBE_NODE_KEYPATH=/home/ubuntu/node_key.rsa |