-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.env
87 lines (66 loc) · 2.38 KB
/
settings.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
##########################
## Global configuration ##
##########################
# optional parameters are commented with their default values
# Port use to expose Prometheus metrics
#prometheus_listen_port = 9000
# Force complete reinstallation of salt-minion on devices
#force = false
# Dry run mode - does not apply any change on the devices
#dry_run = false
# Enable pretty and colored logging
#pretty_logs = true
# Log level
#log_level = "INFO"
# SONiC version supported
# for each versions, you need to have the salt-minion PEX generated
# the expected filenames are: "salt-minion-$VERSION.pex"
# Example: sonic_versions = ["201911", "202205"]
#sonic_versions = []
##################
## Minion setup ##
##################
# Override minion configuration via this varenvs or this .env file
#minion_config = ""
# File to get the minion configuration from
# note: if minion_config is set, its content will be save to minion_config_file file
#minion_config_file: str = "./minion.yml"
# DNS resolvers to set on the SONiC devices
# this is needed to contact the salt-master instances
# can be IP addresses or hostnames
# Examples: ["192.0.2.1", "192.0.2.2"] or ["dns1.lan", "dns2.lan"]
#dns_resolvers = []
# Set true if dns_resolvers is a list of hostnames
#resolve_dns_resolvers_hostname = False
# Location of the PEX minions, choose only one of these options:
#minion_files_local_directory = ""
#minion_files_nexus_location = ""
############################
# SONiC devices inventory ##
############################
# via dynamic inventory
#inventory_url = ""
# filter example: '.devices[] | select(.os|ascii_downcase == "sonic").host_name'
#inventory_filter = "."
# or via static list of hostname
#devices = []
######################
# Device SSH access ##
######################
# Via static credentials
#username = ""
#password = ""
# Via credentials stored in Vault
# Connection to Vault:
#vault_url = ""
#vault_login = ""
#vault_password = ""
# Secret location
#vault_secret_path = ""
# Keys in your Vault, which should be the users
# Example: vault_device_usernames = ["admin", "admin-default"]
# Important notice, "-default" suffix is removed automatically
# It permits to fallback on another password for the same username, you can:
# - set "admin" with the production password
# - set "admin-default" with the SONiC default password on first boot (YourPaSsWoRd)
#vault_device_usernames = [""]