blob: 4faa46d64d2aa7328c13defdaca857b74b3f9886 [file] [log] [blame]
---
# MANDATORY: Credentials for Salt Master
# SALT_URL should consist of url and port.
# For example: http://10.0.0.1:6969
# 6969 - default Salt Master port to listen
# Can be found on cfg* node using
# "salt-call pillar.get _param:salt_master_host"
# and "salt-call pillar.get _param:salt_master_port"
# SALT_USERNAME by default: salt
# It can be verified with "salt-call shadow.info salt"
# SALT_PASSWORD you can find on cfg* node using
# "grep -r salt_api_password /srv/salt/reclass/classes"
SALT_URL: <salt_url>
SALT_USERNAME: <salt_usr>
SALT_PASSWORD: <salt_pwd>
# How many seconds to wait for salt-minion to respond
salt_timeout: 1
# List of nodes (full fqdn) to skip in ALL tests
# Use as env variable as
# export skipped_nodes=mtr01.local,log02.local
# TEMPORARY: please do not comment this setting.
skipped_nodes: [""]
# List of groups (short name, e.g. dbs) to skip in group tests
# Use as env variable as
# export skipped_groups=mtr,log
# TEMPORARY: please do not comment this setting.
skipped_groups: [""]
# Groups can be defined using pillars.
# Uncomment this section to enable this.
# Otherwise groups will be discovered automaticaly
#groups: {cmp: 'nova:compute'}
# mtu test setting
# this test may skip groups (see example)
test_mtu:
{ #"skipped_groups": ["dbs"]
"skipped_ifaces": ["bonding_masters", "lo", "veth", "tap", "cali"]}
# mask for interfaces to skip
# ntp test setting
# this test may skip specific node (use fqdn)
test_ntp_sync:
{ #"skipped_nodes": [""],
"time_deviation": 5}