master 50 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315
  1. ##### Primary configuration settings #####
  2. ##########################################
  3. # This configuration file is used to manage the behavior of the Salt Master.
  4. # Values that are commented out but have an empty line after the comment are
  5. # defaults that do not need to be set in the config. If there is no blank line
  6. # after the comment then the value is presented as an example and is not the
  7. # default.
  8. # Per default, the master will automatically include all config files
  9. # from master.d/*.conf (master.d is a directory in the same directory
  10. # as the main master config file).
  11. #default_include: master.d/*.conf
  12. # The address of the interface to bind to:
  13. #interface: 0.0.0.0
  14. # Whether the master should listen for IPv6 connections. If this is set to True,
  15. # the interface option must be adjusted, too. (For example: "interface: '::'")
  16. #ipv6: False
  17. # The tcp port used by the publisher:
  18. #publish_port: 4505
  19. # The user under which the salt master will run. Salt will update all
  20. # permissions to allow the specified user to run the master. The exception is
  21. # the job cache, which must be deleted if this user is changed. If the
  22. # modified files cause conflicts, set verify_env to False.
  23. #user: root
  24. # The port used by the communication interface. The ret (return) port is the
  25. # interface used for the file server, authentication, job returns, etc.
  26. #ret_port: 4506
  27. # Specify the location of the daemon process ID file:
  28. #pidfile: /var/run/salt-master.pid
  29. # The root directory prepended to these options: pki_dir, cachedir,
  30. # sock_dir, log_file, autosign_file, autoreject_file, extension_modules,
  31. # key_logfile, pidfile, autosign_grains_dir:
  32. #root_dir: /
  33. # The path to the master's configuration file.
  34. #conf_file: /etc/salt/master
  35. # Directory used to store public key data:
  36. #pki_dir: /etc/salt/pki/master
  37. # Key cache. Increases master speed for large numbers of accepted
  38. # keys. Available options: 'sched'. (Updates on a fixed schedule.)
  39. # Note that enabling this feature means that minions will not be
  40. # available to target for up to the length of the maintanence loop
  41. # which by default is 60s.
  42. #key_cache: ''
  43. # Directory to store job and cache data:
  44. # This directory may contain sensitive data and should be protected accordingly.
  45. #
  46. #cachedir: /var/cache/salt/master
  47. # Directory for custom modules. This directory can contain subdirectories for
  48. # each of Salt's module types such as "runners", "output", "wheel", "modules",
  49. # "states", "returners", "engines", "utils", etc.
  50. #extension_modules: /var/cache/salt/master/extmods
  51. # Directory for custom modules. This directory can contain subdirectories for
  52. # each of Salt's module types such as "runners", "output", "wheel", "modules",
  53. # "states", "returners", "engines", "utils", etc.
  54. # Like 'extension_modules' but can take an array of paths
  55. #module_dirs: []
  56. # Verify and set permissions on configuration directories at startup:
  57. #verify_env: True
  58. # Set the number of hours to keep old job information in the job cache:
  59. #keep_jobs: 24
  60. # The number of seconds to wait when the client is requesting information
  61. # about running jobs.
  62. #gather_job_timeout: 10
  63. # Set the default timeout for the salt command and api. The default is 5
  64. # seconds.
  65. #timeout: 5
  66. # The loop_interval option controls the seconds for the master's maintenance
  67. # process check cycle. This process updates file server backends, cleans the
  68. # job cache and executes the scheduler.
  69. #loop_interval: 60
  70. # Set the default outputter used by the salt command. The default is "nested".
  71. #output: nested
  72. # To set a list of additional directories to search for salt outputters, set the
  73. # outputter_dirs option.
  74. #outputter_dirs: []
  75. # Set the default output file used by the salt command. Default is to output
  76. # to the CLI and not to a file. Functions the same way as the "--out-file"
  77. # CLI option, only sets this to a single file for all salt commands.
  78. #output_file: None
  79. # Return minions that timeout when running commands like test.ping
  80. #show_timeout: True
  81. # Tell the client to display the jid when a job is published.
  82. #show_jid: False
  83. # By default, output is colored. To disable colored output, set the color value
  84. # to False.
  85. #color: True
  86. # Do not strip off the colored output from nested results and state outputs
  87. # (true by default).
  88. #strip_colors: False
  89. # To display a summary of the number of minions targeted, the number of
  90. # minions returned, and the number of minions that did not return, set the
  91. # cli_summary value to True. (False by default.)
  92. #
  93. #cli_summary: False
  94. # Set the directory used to hold unix sockets:
  95. #sock_dir: /var/run/salt/master
  96. # The master can take a while to start up when lspci and/or dmidecode is used
  97. # to populate the grains for the master. Enable if you want to see GPU hardware
  98. # data for your master.
  99. #enable_gpu_grains: False
  100. # The master maintains a job cache. While this is a great addition, it can be
  101. # a burden on the master for larger deployments (over 5000 minions).
  102. # Disabling the job cache will make previously executed jobs unavailable to
  103. # the jobs system and is not generally recommended.
  104. #job_cache: True
  105. # Cache minion grains, pillar and mine data via the cache subsystem in the
  106. # cachedir or a database.
  107. #minion_data_cache: True
  108. # Cache subsystem module to use for minion data cache.
  109. #cache: localfs
  110. # Enables a fast in-memory cache booster and sets the expiration time.
  111. #memcache_expire_seconds: 0
  112. # Set a memcache limit in items (bank + key) per cache storage (driver + driver_opts).
  113. #memcache_max_items: 1024
  114. # Each time a cache storage got full cleanup all the expired items not just the oldest one.
  115. #memcache_full_cleanup: False
  116. # Enable collecting the memcache stats and log it on `debug` log level.
  117. #memcache_debug: False
  118. # Store all returns in the given returner.
  119. # Setting this option requires that any returner-specific configuration also
  120. # be set. See various returners in salt/returners for details on required
  121. # configuration values. (See also, event_return_queue, and event_return_queue_max_seconds below.)
  122. #
  123. #event_return: mysql
  124. # On busy systems, enabling event_returns can cause a considerable load on
  125. # the storage system for returners. Events can be queued on the master and
  126. # stored in a batched fashion using a single transaction for multiple events.
  127. # By default, events are not queued.
  128. #event_return_queue: 0
  129. # In some cases enabling event return queueing can be very helpful, but the bus
  130. # may not busy enough to flush the queue consistently. Setting this to a reasonable
  131. # value (1-30 seconds) will cause the queue to be flushed when the oldest event is older
  132. # than `event_return_queue_max_seconds` regardless of how many events are in the queue.
  133. #event_return_queue_max_seconds: 0
  134. # Only return events matching tags in a whitelist, supports glob matches.
  135. #event_return_whitelist:
  136. # - salt/master/a_tag
  137. # - salt/run/*/ret
  138. #
  139. # Store all event returns **except** the tags in a blacklist, supports globs.
  140. #event_return_blacklist:
  141. # - salt/master/not_this_tag
  142. # - salt/wheel/*/ret
  143. #
  144. # Passing very large events can cause the minion to consume large amounts of
  145. # memory. This value tunes the maximum size of a message allowed onto the
  146. # master event bus. The value is expressed in bytes.
  147. #max_event_size: 1048576
  148. # Windows platforms lack posix IPC and must rely on slower TCP based inter-
  149. # process communications. Set ipc_mode to 'tcp' on such systems
  150. #ipc_mode: ipc
  151. # Overwrite the default tcp ports used by the minion when ipc_mode is set to 'tcp'
  152. #tcp_master_pub_port: 4512
  153. #tcp_master_pull_port: 4513
  154. # By default, the master AES key rotates every 24 hours. The next command
  155. # following a key rotation will trigger a key refresh from the minion which may
  156. # result in minions which do not respond to the first command after a key refresh.
  157. #
  158. # To tell the master to ping all minions immediately after an AES key refresh, set
  159. # ping_on_rotate to True. This should mitigate the issue where a minion does not
  160. # appear to initially respond after a key is rotated.
  161. #
  162. # Note that ping_on_rotate may cause high load on the master immediately after
  163. # the key rotation event as minions reconnect. Consider this carefully if this
  164. # salt master is managing a large number of minions.
  165. #
  166. # If disabled, it is recommended to handle this event by listening for the
  167. # 'aes_key_rotate' event with the 'key' tag and acting appropriately.
  168. #ping_on_rotate: False
  169. # By default, the master deletes its cache of minion data when the key for that
  170. # minion is removed. To preserve the cache after key deletion, set
  171. # 'preserve_minion_cache' to True.
  172. #
  173. # WARNING: This may have security implications if compromised minions auth with
  174. # a previous deleted minion ID.
  175. #preserve_minion_cache: False
  176. # Allow or deny minions from requesting their own key revocation
  177. #allow_minion_key_revoke: True
  178. # If max_minions is used in large installations, the master might experience
  179. # high-load situations because of having to check the number of connected
  180. # minions for every authentication. This cache provides the minion-ids of
  181. # all connected minions to all MWorker-processes and greatly improves the
  182. # performance of max_minions.
  183. #con_cache: False
  184. # The master can include configuration from other files. To enable this,
  185. # pass a list of paths to this option. The paths can be either relative or
  186. # absolute; if relative, they are considered to be relative to the directory
  187. # the main master configuration file lives in (this file). Paths can make use
  188. # of shell-style globbing. If no files are matched by a path passed to this
  189. # option, then the master will log a warning message.
  190. #
  191. # Include a config file from some other path:
  192. #include: /etc/salt/extra_config
  193. #
  194. # Include config from several files and directories:
  195. #include:
  196. # - /etc/salt/extra_config
  197. #
  198. ##### Large-scale tuning settings #####
  199. ##########################################
  200. # Max open files
  201. #
  202. # Each minion connecting to the master uses AT LEAST one file descriptor, the
  203. # master subscription connection. If enough minions connect you might start
  204. # seeing on the console (and then salt-master crashes):
  205. # Too many open files (tcp_listener.cpp:335)
  206. # Aborted (core dumped)
  207. #
  208. # By default this value will be the one of `ulimit -Hn`, ie, the hard limit for
  209. # max open files.
  210. #
  211. # If you wish to set a different value than the default one, uncomment and
  212. # configure this setting. Remember that this value CANNOT be higher than the
  213. # hard limit. Raising the hard limit depends on your OS and/or distribution,
  214. # a good way to find the limit is to search the internet. For example:
  215. # raise max open files hard limit debian
  216. #
  217. #max_open_files: 100000
  218. # The number of worker threads to start. These threads are used to manage
  219. # return calls made from minions to the master. If the master seems to be
  220. # running slowly, increase the number of threads. This setting can not be
  221. # set lower than 3.
  222. #worker_threads: 5
  223. # Set the ZeroMQ high water marks
  224. # http://api.zeromq.org/3-2:zmq-setsockopt
  225. # The listen queue size / backlog
  226. #zmq_backlog: 1000
  227. # The publisher interface ZeroMQPubServerChannel
  228. #pub_hwm: 1000
  229. # The master may allocate memory per-event and not
  230. # reclaim it.
  231. # To set a high-water mark for memory allocation, use
  232. # ipc_write_buffer to set a high-water mark for message
  233. # buffering.
  234. # Value: In bytes. Set to 'dynamic' to have Salt select
  235. # a value for you. Default is disabled.
  236. #ipc_write_buffer: 'dynamic'
  237. #
  238. # These two batch settings, batch_safe_limit and batch_safe_size, are used to
  239. # automatically switch to a batch mode execution. If a command would have been
  240. # sent to more than <batch_safe_limit> minions, then run the command in
  241. # batches of <batch_safe_size>. If no batch_safe_size is specified, a default
  242. # of 8 will be used. If no batch_safe_limit is specified, then no automatic
  243. # batching will occur.
  244. #batch_safe_limit: 100
  245. #batch_safe_size: 8
  246. # Master stats enables stats events to be fired from the master at close
  247. # to the defined interval
  248. #master_stats: False
  249. #master_stats_event_iter: 60
  250. ##### Security settings #####
  251. ##########################################
  252. # Enable passphrase protection of Master private key. Although a string value
  253. # is acceptable; passwords should be stored in an external vaulting mechanism
  254. # and retrieved via sdb. See https://docs.saltstack.com/en/latest/topics/sdb/.
  255. # Passphrase protection is off by default but an example of an sdb profile and
  256. # query is as follows.
  257. #masterkeyring:
  258. # driver: keyring
  259. # service: system
  260. #
  261. #key_pass: sdb://masterkeyring/key_pass
  262. #
  263. # Enable passphrase protection of the Master signing_key. This only applies if
  264. # master_sign_pubkey is set to True. This is disabled by default.
  265. #master_sign_pubkey: False
  266. #signing_key_pass: sdb://masterkeyring/signing_pass
  267. #
  268. # Enable "open mode", this mode still maintains encryption, but turns off
  269. # authentication, this is only intended for highly secure environments or for
  270. # the situation where your keys end up in a bad state. If you run in open mode
  271. # you do so at your own risk!
  272. #open_mode: False
  273. # Enable auto_accept, this setting will automatically accept all incoming
  274. # public keys from the minions. Note that this is insecure.
  275. #auto_accept: False
  276. # The size of key that should be generated when creating new keys.
  277. #keysize: 2048
  278. # Time in minutes that an incoming public key with a matching name found in
  279. # pki_dir/minion_autosign/keyid is automatically accepted. Expired autosign keys
  280. # are removed when the master checks the minion_autosign directory.
  281. # 0 equals no timeout
  282. #autosign_timeout: 120
  283. # If the autosign_file is specified, incoming keys specified in the
  284. # autosign_file will be automatically accepted. This is insecure. Regular
  285. # expressions as well as globing lines are supported. The file must be readonly
  286. # except for the owner. Use permissive_pki_access to allow the group write access.
  287. #autosign_file: /etc/salt/autosign.conf
  288. # Works like autosign_file, but instead allows you to specify minion IDs for
  289. # which keys will automatically be rejected. Will override both membership in
  290. # the autosign_file and the auto_accept setting.
  291. #autoreject_file: /etc/salt/autoreject.conf
  292. # If the autosign_grains_dir is specified, incoming keys from minons with grain
  293. # values matching those defined in files in this directory will be accepted
  294. # automatically. This is insecure. Minions need to be configured to send the grains.
  295. #autosign_grains_dir: /etc/salt/autosign_grains
  296. # Enable permissive access to the salt keys. This allows you to run the
  297. # master or minion as root, but have a non-root group be given access to
  298. # your pki_dir. To make the access explicit, root must belong to the group
  299. # you've given access to. This is potentially quite insecure. If an autosign_file
  300. # is specified, enabling permissive_pki_access will allow group access to that
  301. # specific file.
  302. #permissive_pki_access: False
  303. # Allow users on the master access to execute specific commands on minions.
  304. # This setting should be treated with care since it opens up execution
  305. # capabilities to non root users. By default this capability is completely
  306. # disabled.
  307. #publisher_acl:
  308. # larry:
  309. # - test.ping
  310. # - network.*
  311. #
  312. # Blacklist any of the following users or modules
  313. #
  314. # This example would blacklist all non sudo users, including root from
  315. # running any commands. It would also blacklist any use of the "cmd"
  316. # module. This is completely disabled by default.
  317. #
  318. #
  319. # Check the list of configured users in client ACL against users on the
  320. # system and throw errors if they do not exist.
  321. #client_acl_verify: True
  322. #
  323. #publisher_acl_blacklist:
  324. # users:
  325. # - root
  326. # - '^(?!sudo_).*$' # all non sudo users
  327. # modules:
  328. # - cmd
  329. #
  330. # Check the list of configured users in client ACL against users on the
  331. # system and throw errors if they do not exist.
  332. #client_acl_verify: True
  333. # Enforce publisher_acl & publisher_acl_blacklist when users have sudo
  334. # access to the salt command.
  335. #
  336. #sudo_acl: False
  337. # The external auth system uses the Salt auth modules to authenticate and
  338. # validate users to access areas of the Salt system.
  339. #external_auth:
  340. # pam:
  341. # fred:
  342. # - test.*
  343. #
  344. # Time (in seconds) for a newly generated token to live. Default: 12 hours
  345. #token_expire: 43200
  346. # Allow eauth users to specify the expiry time of the tokens they generate.
  347. # A boolean applies to all users or a dictionary of whitelisted eauth backends
  348. # and usernames may be given.
  349. #token_expire_user_override:
  350. # pam:
  351. # - fred
  352. # - tom
  353. # ldap:
  354. # - gary
  355. #
  356. #token_expire_user_override: False
  357. # Set to True to enable keeping the calculated user's auth list in the token
  358. # file. This is disabled by default and the auth list is calculated or requested
  359. # from the eauth driver each time.
  360. #keep_acl_in_token: False
  361. # Auth subsystem module to use to get authorized access list for a user.
  362. # By default it's the same module used for external authentication.
  363. # See https://docs.saltstack.com/en/latest/ref/auth/all/ for module list.
  364. #eauth_acl_module: ''
  365. # Allow minions to push files to the master. This is disabled by default, for
  366. # security purposes.
  367. #file_recv: False
  368. # Set a hard-limit on the size of the files that can be pushed to the master.
  369. # It will be interpreted as megabytes. Default: 100
  370. #file_recv_max_size: 100
  371. # Signature verification on messages published from the master.
  372. # This causes the master to cryptographically sign all messages published to its event
  373. # bus, and minions then verify that signature before acting on the message.
  374. #
  375. # This is False by default.
  376. #
  377. # Note that to facilitate interoperability with masters and minions that are different
  378. # versions, if sign_pub_messages is True but a message is received by a minion with
  379. # no signature, it will still be accepted, and a warning message will be logged.
  380. # Conversely, if sign_pub_messages is False, but a minion receives a signed
  381. # message it will be accepted, the signature will not be checked, and a warning message
  382. # will be logged. This behavior went away in Salt 2014.1.0 and these two situations
  383. # will cause minion to throw an exception and drop the message.
  384. #sign_pub_messages: False
  385. # Signature verification on messages published from minions
  386. # This requires that minions cryptographically sign the messages they
  387. # publish to the master. If minions are not signing, then log this information
  388. # at loglevel 'INFO' and drop the message without acting on it.
  389. #require_minion_sign_messages: False
  390. # The below will drop messages when their signatures do not validate.
  391. # Note that when this option is False but `require_minion_sign_messages` is True
  392. # minions MUST sign their messages but the validity of their signatures
  393. # is ignored.
  394. # These two config options exist so a Salt infrastructure can be moved
  395. # to signing minion messages gradually.
  396. #drop_messages_signature_fail: False
  397. # Use TLS/SSL encrypted connection between master and minion.
  398. # Can be set to a dictionary containing keyword arguments corresponding to Python's
  399. # 'ssl.wrap_socket' method.
  400. # Default is None.
  401. #ssl:
  402. # keyfile: <path_to_keyfile>
  403. # certfile: <path_to_certfile>
  404. # ssl_version: PROTOCOL_TLSv1_2
  405. ##### Salt-SSH Configuration #####
  406. ##########################################
  407. # Define the default salt-ssh roster module to use
  408. #roster: flat
  409. # Pass in an alternative location for the salt-ssh `flat` roster file
  410. #roster_file: /etc/salt/roster
  411. # Define locations for `flat` roster files so they can be chosen when using Salt API.
  412. # An administrator can place roster files into these locations. Then when
  413. # calling Salt API, parameter 'roster_file' should contain a relative path to
  414. # these locations. That is, "roster_file=/foo/roster" will be resolved as
  415. # "/etc/salt/roster.d/foo/roster" etc. This feature prevents passing insecure
  416. # custom rosters through the Salt API.
  417. #
  418. #rosters:
  419. # - /etc/salt/roster.d
  420. # - /opt/salt/some/more/rosters
  421. # The ssh password to log in with.
  422. #ssh_passwd: ''
  423. #The target system's ssh port number.
  424. #ssh_port: 22
  425. # Comma-separated list of ports to scan.
  426. #ssh_scan_ports: 22
  427. # Scanning socket timeout for salt-ssh.
  428. #ssh_scan_timeout: 0.01
  429. # Boolean to run command via sudo.
  430. #ssh_sudo: False
  431. # Number of seconds to wait for a response when establishing an SSH connection.
  432. #ssh_timeout: 60
  433. # The user to log in as.
  434. #ssh_user: root
  435. # The log file of the salt-ssh command:
  436. #ssh_log_file: /var/log/salt/ssh
  437. # Pass in minion option overrides that will be inserted into the SHIM for
  438. # salt-ssh calls. The local minion config is not used for salt-ssh. Can be
  439. # overridden on a per-minion basis in the roster (`minion_opts`)
  440. #ssh_minion_opts:
  441. # gpg_keydir: /root/gpg
  442. # Set this to True to default to using ~/.ssh/id_rsa for salt-ssh
  443. # authentication with minions
  444. #ssh_use_home_key: False
  445. # Set this to True to default salt-ssh to run with ``-o IdentitiesOnly=yes``.
  446. # This option is intended for situations where the ssh-agent offers many
  447. # different identities and allows ssh to ignore those identities and use the
  448. # only one specified in options.
  449. #ssh_identities_only: False
  450. # List-only nodegroups for salt-ssh. Each group must be formed as either a
  451. # comma-separated list, or a YAML list. This option is useful to group minions
  452. # into easy-to-target groups when using salt-ssh. These groups can then be
  453. # targeted with the normal -N argument to salt-ssh.
  454. #ssh_list_nodegroups: {}
  455. # salt-ssh has the ability to update the flat roster file if a minion is not
  456. # found in the roster. Set this to True to enable it.
  457. #ssh_update_roster: False
  458. ##### Master Module Management #####
  459. ##########################################
  460. # Manage how master side modules are loaded.
  461. # Add any additional locations to look for master runners:
  462. #runner_dirs: []
  463. # Add any additional locations to look for master utils:
  464. #utils_dirs: []
  465. # Enable Cython for master side modules:
  466. #cython_enable: False
  467. ##### State System settings #####
  468. ##########################################
  469. # The state system uses a "top" file to tell the minions what environment to
  470. # use and what modules to use. The state_top file is defined relative to the
  471. # root of the base environment as defined in "File Server settings" below.
  472. #state_top: top.sls
  473. # The master_tops option replaces the external_nodes option by creating
  474. # a plugable system for the generation of external top data. The external_nodes
  475. # option is deprecated by the master_tops option.
  476. #
  477. # To gain the capabilities of the classic external_nodes system, use the
  478. # following configuration:
  479. #master_tops:
  480. # ext_nodes: <Shell command which returns yaml>
  481. #
  482. #master_tops: {}
  483. # The renderer to use on the minions to render the state data
  484. #renderer: yaml_jinja
  485. # Default Jinja environment options for all templates except sls templates
  486. #jinja_env:
  487. # block_start_string: '{%'
  488. # block_end_string: '%}'
  489. # variable_start_string: '{{'
  490. # variable_end_string: '}}'
  491. # comment_start_string: '{#'
  492. # comment_end_string: '#}'
  493. # line_statement_prefix:
  494. # line_comment_prefix:
  495. # trim_blocks: False
  496. # lstrip_blocks: False
  497. # newline_sequence: '\n'
  498. # keep_trailing_newline: False
  499. # Jinja environment options for sls templates
  500. #jinja_sls_env:
  501. # block_start_string: '{%'
  502. # block_end_string: '%}'
  503. # variable_start_string: '{{'
  504. # variable_end_string: '}}'
  505. # comment_start_string: '{#'
  506. # comment_end_string: '#}'
  507. # line_statement_prefix:
  508. # line_comment_prefix:
  509. # trim_blocks: False
  510. # lstrip_blocks: False
  511. # newline_sequence: '\n'
  512. # keep_trailing_newline: False
  513. # The failhard option tells the minions to stop immediately after the first
  514. # failure detected in the state execution, defaults to False
  515. #failhard: False
  516. # The state_verbose and state_output settings can be used to change the way
  517. # state system data is printed to the display. By default all data is printed.
  518. # The state_verbose setting can be set to True or False, when set to False
  519. # all data that has a result of True and no changes will be suppressed.
  520. #state_verbose: True
  521. # The state_output setting controls which results will be output full multi line
  522. # full, terse - each state will be full/terse
  523. # mixed - only states with errors will be full
  524. # changes - states with changes and errors will be full
  525. # full_id, mixed_id, changes_id and terse_id are also allowed;
  526. # when set, the state ID will be used as name in the output
  527. #state_output: full
  528. # The state_output_diff setting changes whether or not the output from
  529. # successful states is returned. Useful when even the terse output of these
  530. # states is cluttering the logs. Set it to True to ignore them.
  531. #state_output_diff: False
  532. # Automatically aggregate all states that have support for mod_aggregate by
  533. # setting to 'True'. Or pass a list of state module names to automatically
  534. # aggregate just those types.
  535. #
  536. #state_aggregate:
  537. # - pkg
  538. #
  539. #state_aggregate: False
  540. # Send progress events as each function in a state run completes execution
  541. # by setting to 'True'. Progress events are in the format
  542. # 'salt/job/<JID>/prog/<MID>/<RUN NUM>'.
  543. #state_events: False
  544. ##### File Server settings #####
  545. ##########################################
  546. # Salt runs a lightweight file server written in zeromq to deliver files to
  547. # minions. This file server is built into the master daemon and does not
  548. # require a dedicated port.
  549. # The file server works on environments passed to the master, each environment
  550. # can have multiple root directories, the subdirectories in the multiple file
  551. # roots cannot match, otherwise the downloaded files will not be able to be
  552. # reliably ensured. A base environment is required to house the top file.
  553. # Example:
  554. #file_roots:
  555. # base:
  556. # - /srv/salt/
  557. # dev:
  558. # - /srv/salt/dev/services
  559. # - /srv/salt/dev/states
  560. # prod:
  561. # - /srv/salt/prod/services
  562. # - /srv/salt/prod/states
  563. #
  564. #file_roots:
  565. # base:
  566. # - /srv/salt
  567. # The master_roots setting configures a master-only copy of the file_roots dictionary,
  568. # used by the state compiler.
  569. #master_roots: /srv/salt-master
  570. # When using multiple environments, each with their own top file, the
  571. # default behaviour is an unordered merge. To prevent top files from
  572. # being merged together and instead to only use the top file from the
  573. # requested environment, set this value to 'same'.
  574. #top_file_merging_strategy: merge
  575. # To specify the order in which environments are merged, set the ordering
  576. # in the env_order option. Given a conflict, the last matching value will
  577. # win.
  578. #env_order: ['base', 'dev', 'prod']
  579. # If top_file_merging_strategy is set to 'same' and an environment does not
  580. # contain a top file, the top file in the environment specified by default_top
  581. # will be used instead.
  582. #default_top: base
  583. # The hash_type is the hash to use when discovering the hash of a file on
  584. # the master server. The default is sha256, but md5, sha1, sha224, sha384 and
  585. # sha512 are also supported.
  586. #
  587. # WARNING: While md5 and sha1 are also supported, do not use them due to the
  588. # high chance of possible collisions and thus security breach.
  589. #
  590. # Prior to changing this value, the master should be stopped and all Salt
  591. # caches should be cleared.
  592. #hash_type: sha256
  593. # The buffer size in the file server can be adjusted here:
  594. #file_buffer_size: 1048576
  595. # A regular expression (or a list of expressions) that will be matched
  596. # against the file path before syncing the modules and states to the minions.
  597. # This includes files affected by the file.recurse state.
  598. # For example, if you manage your custom modules and states in subversion
  599. # and don't want all the '.svn' folders and content synced to your minions,
  600. # you could set this to '/\.svn($|/)'. By default nothing is ignored.
  601. #file_ignore_regex:
  602. # - '/\.svn($|/)'
  603. # - '/\.git($|/)'
  604. # A file glob (or list of file globs) that will be matched against the file
  605. # path before syncing the modules and states to the minions. This is similar
  606. # to file_ignore_regex above, but works on globs instead of regex. By default
  607. # nothing is ignored.
  608. #file_ignore_glob:
  609. # - '*.pyc'
  610. # - '*/somefolder/*.bak'
  611. # - '*.swp'
  612. # File Server Backend
  613. #
  614. # Salt supports a modular fileserver backend system, this system allows
  615. # the salt master to link directly to third party systems to gather and
  616. # manage the files available to minions. Multiple backends can be
  617. # configured and will be searched for the requested file in the order in which
  618. # they are defined here. The default setting only enables the standard backend
  619. # "roots" which uses the "file_roots" option.
  620. #fileserver_backend:
  621. # - roots
  622. # To use multiple backends list them in the order they are searched:
  623. #fileserver_backend:
  624. # - git
  625. # - roots
  626. #
  627. # Uncomment the line below and change the value to `False`
  628. # if you do not want the file_server to follow
  629. # symlinks when walking the filesystem tree. This is set to True
  630. # by default. Currently this only applies to the default roots
  631. # fileserver_backend.
  632. #fileserver_followsymlinks: True
  633. # Uncomment the line below if you do not want symlinks to be
  634. # treated as the files they are pointing to. By default this is set to
  635. # False. By uncommenting the line below, any detected symlink while listing
  636. # files on the Master will not be returned to the Minion.
  637. #fileserver_ignoresymlinks: False
  638. # By default, the Salt fileserver recurses fully into all defined environments
  639. # to attempt to find files. To limit this behavior so that the fileserver only
  640. # traverses directories with SLS files and special Salt directories like _modules,
  641. # enable the option below. This might be useful for installations where a file root
  642. # has a very large number of files and performance is impacted. Default is False.
  643. #fileserver_limit_traversal: False
  644. # The fileserver can fire events off every time the fileserver is updated,
  645. # these are disabled by default, but can be easily turned on by setting this
  646. # flag to True
  647. #fileserver_events: False
  648. # Git File Server Backend Configuration
  649. #
  650. # Optional parameter used to specify the provider to be used for gitfs. Must be
  651. # either pygit2 or gitpython. If unset, then both will be tried (in that
  652. # order), and the first one with a compatible version installed will be the
  653. # provider that is used.
  654. #
  655. #gitfs_provider: pygit2
  656. # Along with gitfs_password, is used to authenticate to HTTPS remotes.
  657. #gitfs_user: ''
  658. # Along with gitfs_user, is used to authenticate to HTTPS remotes.
  659. # This parameter is not required if the repository does not use authentication.
  660. #gitfs_password: ''
  661. # By default, Salt will not authenticate to an HTTP (non-HTTPS) remote.
  662. # This parameter enables authentication over HTTP. Enable this at your own risk.
  663. #gitfs_insecure_auth: False
  664. # Along with gitfs_privkey (and optionally gitfs_passphrase), is used to
  665. # authenticate to SSH remotes. This parameter (or its per-remote counterpart)
  666. # is required for SSH remotes.
  667. #gitfs_pubkey: ''
  668. # Along with gitfs_pubkey (and optionally gitfs_passphrase), is used to
  669. # authenticate to SSH remotes. This parameter (or its per-remote counterpart)
  670. # is required for SSH remotes.
  671. #gitfs_privkey: ''
  672. # This parameter is optional, required only when the SSH key being used to
  673. # authenticate is protected by a passphrase.
  674. #gitfs_passphrase: ''
  675. # When using the git fileserver backend at least one git remote needs to be
  676. # defined. The user running the salt master will need read access to the repo.
  677. #
  678. # The repos will be searched in order to find the file requested by a client
  679. # and the first repo to have the file will return it.
  680. # When using the git backend branches and tags are translated into salt
  681. # environments.
  682. # Note: file:// repos will be treated as a remote, so refs you want used must
  683. # exist in that repo as *local* refs.
  684. #gitfs_remotes:
  685. # - git://github.com/saltstack/salt-states.git
  686. # - file:///var/git/saltmaster
  687. #
  688. # The gitfs_ssl_verify option specifies whether to ignore ssl certificate
  689. # errors when contacting the gitfs backend. You might want to set this to
  690. # false if you're using a git backend that uses a self-signed certificate but
  691. # keep in mind that setting this flag to anything other than the default of True
  692. # is a security concern, you may want to try using the ssh transport.
  693. #gitfs_ssl_verify: True
  694. # The gitfs_root option gives the ability to serve files from a subdirectory
  695. # within the repository. The path is defined relative to the root of the
  696. # repository and defaults to the repository root.
  697. #gitfs_root: somefolder/otherfolder
  698. #
  699. # The refspecs fetched by gitfs remotes
  700. #gitfs_refspecs:
  701. # - '+refs/heads/*:refs/remotes/origin/*'
  702. # - '+refs/tags/*:refs/tags/*'
  703. ##### Pillar settings #####
  704. ##########################################
  705. # Salt Pillars allow for the building of global data that can be made selectively
  706. # available to different minions based on minion grain filtering. The Salt
  707. # Pillar is laid out in the same fashion as the file server, with environments,
  708. # a top file and sls files. However, pillar data does not need to be in the
  709. # highstate format, and is generally just key/value pairs.
  710. #pillar_roots:
  711. # base:
  712. # - /srv/pillar
  713. #ext_pillar:
  714. # - hiera: /etc/hiera.yaml
  715. # - cmd_yaml: cat /etc/salt/yaml
  716. #
  717. # A list of paths to be recursively decrypted during pillar compilation.
  718. # Entries in this list can be formatted either as a simple string, or as a
  719. # key/value pair, with the key being the pillar location, and the value being
  720. # the renderer to use for pillar decryption. If the former is used, the
  721. # renderer specified by decrypt_pillar_default will be used.
  722. #decrypt_pillar:
  723. # - 'foo:bar': gpg
  724. # - 'lorem:ipsum:dolor'
  725. #
  726. # The delimiter used to distinguish nested data structures in the
  727. # decrypt_pillar option.
  728. #decrypt_pillar_delimiter: ':'
  729. # The default renderer used for decryption, if one is not specified for a given
  730. # pillar key in decrypt_pillar.
  731. #decrypt_pillar_default: gpg
  732. # List of renderers which are permitted to be used for pillar decryption.
  733. #decrypt_pillar_renderers:
  734. # - gpg
  735. # The ext_pillar_first option allows for external pillar sources to populate
  736. # before file system pillar. This allows for targeting file system pillar from
  737. # ext_pillar.
  738. #ext_pillar_first: False
  739. # The external pillars permitted to be used on-demand using pillar.ext
  740. #on_demand_ext_pillar:
  741. # - libvirt
  742. # - virtkey
  743. # The pillar_gitfs_ssl_verify option specifies whether to ignore ssl certificate
  744. # errors when contacting the pillar gitfs backend. You might want to set this to
  745. # false if you're using a git backend that uses a self-signed certificate but
  746. # keep in mind that setting this flag to anything other than the default of True
  747. # is a security concern, you may want to try using the ssh transport.
  748. #pillar_gitfs_ssl_verify: True
  749. # The pillar_opts option adds the master configuration file data to a dict in
  750. # the pillar called "master". This is used to set simple configurations in the
  751. # master config file that can then be used on minions.
  752. #pillar_opts: False
  753. # The pillar_safe_render_error option prevents the master from passing pillar
  754. # render errors to the minion. This is set on by default because the error could
  755. # contain templating data which would give that minion information it shouldn't
  756. # have, like a password! When set true the error message will only show:
  757. # Rendering SLS 'my.sls' failed. Please see master log for details.
  758. #pillar_safe_render_error: True
  759. # The pillar_source_merging_strategy option allows you to configure merging strategy
  760. # between different sources. It accepts five values: none, recurse, aggregate, overwrite,
  761. # or smart. None will not do any merging at all. Recurse will merge recursively mapping of data.
  762. # Aggregate instructs aggregation of elements between sources that use the #!yamlex renderer. Overwrite
  763. # will overwrite elements according the order in which they are processed. This is
  764. # behavior of the 2014.1 branch and earlier. Smart guesses the best strategy based
  765. # on the "renderer" setting and is the default value.
  766. #pillar_source_merging_strategy: smart
  767. # Recursively merge lists by aggregating them instead of replacing them.
  768. #pillar_merge_lists: False
  769. # Set this option to True to force the pillarenv to be the same as the effective
  770. # saltenv when running states. If pillarenv is specified this option will be
  771. # ignored.
  772. #pillarenv_from_saltenv: False
  773. # Set this option to 'True' to force a 'KeyError' to be raised whenever an
  774. # attempt to retrieve a named value from pillar fails. When this option is set
  775. # to 'False', the failed attempt returns an empty string. Default is 'False'.
  776. #pillar_raise_on_missing: False
  777. # Git External Pillar (git_pillar) Configuration Options
  778. #
  779. # Specify the provider to be used for git_pillar. Must be either pygit2 or
  780. # gitpython. If unset, then both will be tried in that same order, and the
  781. # first one with a compatible version installed will be the provider that
  782. # is used.
  783. #git_pillar_provider: pygit2
  784. #
  785. # If the desired branch matches this value, and the environment is omitted
  786. # from the git_pillar configuration, then the environment for that git_pillar
  787. # remote will be base.
  788. #git_pillar_base: master
  789. # If the branch is omitted from a git_pillar remote, then this branch will
  790. # be used instead
  791. #git_pillar_branch: master
  792. # Environment to use for git_pillar remotes. This is normally derived from
  793. # the branch/tag (or from a per-remote env parameter), but if set this will
  794. # override the process of deriving the env from the branch/tag name.
  795. #git_pillar_env: ''
  796. # Path relative to the root of the repository where the git_pillar top file
  797. # and SLS files are located.
  798. #git_pillar_root: ''
  799. # Specifies whether or not to ignore SSL certificate errors when contacting
  800. # the remote repository.
  801. #git_pillar_ssl_verify: False
  802. # When set to False, if there is an update/checkout lock for a git_pillar
  803. # remote and the pid written to it is not running on the master, the lock
  804. # file will be automatically cleared and a new lock will be obtained.
  805. #git_pillar_global_lock: True
  806. # Git External Pillar Authentication Options
  807. #
  808. # Along with git_pillar_password, is used to authenticate to HTTPS remotes.
  809. #git_pillar_user: ''
  810. # Along with git_pillar_user, is used to authenticate to HTTPS remotes.
  811. # This parameter is not required if the repository does not use authentication.
  812. #git_pillar_password: ''
  813. # By default, Salt will not authenticate to an HTTP (non-HTTPS) remote.
  814. # This parameter enables authentication over HTTP.
  815. #git_pillar_insecure_auth: False
  816. # Along with git_pillar_privkey (and optionally git_pillar_passphrase),
  817. # is used to authenticate to SSH remotes.
  818. #git_pillar_pubkey: ''
  819. # Along with git_pillar_pubkey (and optionally git_pillar_passphrase),
  820. # is used to authenticate to SSH remotes.
  821. #git_pillar_privkey: ''
  822. # This parameter is optional, required only when the SSH key being used
  823. # to authenticate is protected by a passphrase.
  824. #git_pillar_passphrase: ''
  825. # The refspecs fetched by git_pillar remotes
  826. #git_pillar_refspecs:
  827. # - '+refs/heads/*:refs/remotes/origin/*'
  828. # - '+refs/tags/*:refs/tags/*'
  829. # A master can cache pillars locally to bypass the expense of having to render them
  830. # for each minion on every request. This feature should only be enabled in cases
  831. # where pillar rendering time is known to be unsatisfactory and any attendant security
  832. # concerns about storing pillars in a master cache have been addressed.
  833. #
  834. # When enabling this feature, be certain to read through the additional ``pillar_cache_*``
  835. # configuration options to fully understand the tunable parameters and their implications.
  836. #
  837. # Note: setting ``pillar_cache: True`` has no effect on targeting Minions with Pillars.
  838. # See https://docs.saltstack.com/en/latest/topics/targeting/pillar.html
  839. #pillar_cache: False
  840. # If and only if a master has set ``pillar_cache: True``, the cache TTL controls the amount
  841. # of time, in seconds, before the cache is considered invalid by a master and a fresh
  842. # pillar is recompiled and stored. A value of 0 will cause the cache to always be valid.
  843. #pillar_cache_ttl: 3600
  844. # If and only if a master has set `pillar_cache: True`, one of several storage providers
  845. # can be utilized.
  846. #
  847. # `disk`: The default storage backend. This caches rendered pillars to the master cache.
  848. # Rendered pillars are serialized and deserialized as msgpack structures for speed.
  849. # Note that pillars are stored UNENCRYPTED. Ensure that the master cache
  850. # has permissions set appropriately. (Same defaults are provided.)
  851. #
  852. # memory: [EXPERIMENTAL] An optional backend for pillar caches which uses a pure-Python
  853. # in-memory data structure for maximal performance. There are several caveats,
  854. # however. First, because each master worker contains its own in-memory cache,
  855. # there is no guarantee of cache consistency between minion requests. This
  856. # works best in situations where the pillar rarely if ever changes. Secondly,
  857. # and perhaps more importantly, this means that unencrypted pillars will
  858. # be accessible to any process which can examine the memory of the ``salt-master``!
  859. # This may represent a substantial security risk.
  860. #
  861. #pillar_cache_backend: disk
  862. ###### Reactor Settings #####
  863. ###########################################
  864. # Define a salt reactor. See https://docs.saltstack.com/en/latest/topics/reactor/
  865. #reactor: []
  866. # Set the TTL for the cache of the reactor configuration.
  867. #reactor_refresh_interval: 60
  868. # Configure the number of workers for the runner/wheel in the reactor.
  869. #reactor_worker_threads: 10
  870. # Define the queue size for workers in the reactor.
  871. #reactor_worker_hwm: 10000
  872. ##### Syndic settings #####
  873. ##########################################
  874. # The Salt syndic is used to pass commands through a master from a higher
  875. # master. Using the syndic is simple. If this is a master that will have
  876. # syndic servers(s) below it, then set the "order_masters" setting to True.
  877. #
  878. # If this is a master that will be running a syndic daemon for passthrough, then
  879. # the "syndic_master" setting needs to be set to the location of the master server
  880. # to receive commands from.
  881. # Set the order_masters setting to True if this master will command lower
  882. # masters' syndic interfaces.
  883. #order_masters: False
  884. # If this master will be running a salt syndic daemon, syndic_master tells
  885. # this master where to receive commands from.
  886. #syndic_master: masterofmasters
  887. # This is the 'ret_port' of the MasterOfMaster:
  888. #syndic_master_port: 4506
  889. # PID file of the syndic daemon:
  890. #syndic_pidfile: /var/run/salt-syndic.pid
  891. # The log file of the salt-syndic daemon:
  892. #syndic_log_file: /var/log/salt/syndic
  893. # The behaviour of the multi-syndic when connection to a master of masters failed.
  894. # Can specify ``random`` (default) or ``ordered``. If set to ``random``, masters
  895. # will be iterated in random order. If ``ordered`` is specified, the configured
  896. # order will be used.
  897. #syndic_failover: random
  898. # The number of seconds for the salt client to wait for additional syndics to
  899. # check in with their lists of expected minions before giving up.
  900. #syndic_wait: 5
  901. ##### Peer Publish settings #####
  902. ##########################################
  903. # Salt minions can send commands to other minions, but only if the minion is
  904. # allowed to. By default "Peer Publication" is disabled, and when enabled it
  905. # is enabled for specific minions and specific commands. This allows secure
  906. # compartmentalization of commands based on individual minions.
  907. # The configuration uses regular expressions to match minions and then a list
  908. # of regular expressions to match functions. The following will allow the
  909. # minion authenticated as foo.example.com to execute functions from the test
  910. # and pkg modules.
  911. #peer:
  912. # foo.example.com:
  913. # - test.*
  914. # - pkg.*
  915. #
  916. # This will allow all minions to execute all commands:
  917. #peer:
  918. # .*:
  919. # - .*
  920. #
  921. # This is not recommended, since it would allow anyone who gets root on any
  922. # single minion to instantly have root on all of the minions!
  923. # Minions can also be allowed to execute runners from the salt master.
  924. # Since executing a runner from the minion could be considered a security risk,
  925. # it needs to be enabled. This setting functions just like the peer setting
  926. # except that it opens up runners instead of module functions.
  927. #
  928. # All peer runner support is turned off by default and must be enabled before
  929. # using. This will enable all peer runners for all minions:
  930. #peer_run:
  931. # .*:
  932. # - .*
  933. #
  934. # To enable just the manage.up runner for the minion foo.example.com:
  935. #peer_run:
  936. # foo.example.com:
  937. # - manage.up
  938. #
  939. ##### Mine settings #####
  940. #####################################
  941. # Restrict mine.get access from minions. By default any minion has a full access
  942. # to get all mine data from master cache. In acl definion below, only pcre matches
  943. # are allowed.
  944. #mine_get:
  945. # .*:
  946. # - .*
  947. #
  948. # The example below enables minion foo.example.com to get 'network.interfaces' mine
  949. # data only, minions web* to get all network.* and disk.* mine data and all other
  950. # minions won't get any mine data.
  951. #mine_get:
  952. # foo.example.com:
  953. # - network.interfaces
  954. # web.*:
  955. # - network.*
  956. # - disk.*
  957. #
  958. ##### Logging settings #####
  959. ##########################################
  960. # The location of the master log file
  961. # The master log can be sent to a regular file, local path name, or network
  962. # location. Remote logging works best when configured to use rsyslogd(8) (e.g.:
  963. # ``file:///dev/log``), with rsyslogd(8) configured for network logging. The URI
  964. # format is: <file|udp|tcp>://<host|socketpath>:<port-if-required>/<log-facility>
  965. #log_file: /var/log/salt/master
  966. #log_file: file:///dev/log
  967. #log_file: udp://loghost:10514
  968. #log_file: /var/log/salt/master
  969. #key_logfile: /var/log/salt/key
  970. # The level of messages to send to the console.
  971. # One of 'garbage', 'trace', 'debug', info', 'warning', 'error', 'critical'.
  972. #
  973. # The following log levels are considered INSECURE and may log sensitive data:
  974. # ['garbage', 'trace', 'debug']
  975. #
  976. #log_level: warning
  977. # The level of messages to send to the log file.
  978. # One of 'garbage', 'trace', 'debug', 'info', 'warning', 'error', 'critical'.
  979. # If using 'log_granular_levels' this must be set to the highest desired level.
  980. #log_level_logfile: warning
  981. # The date and time format used in log messages. Allowed date/time formatting
  982. # can be seen here: http://docs.python.org/library/time.html#time.strftime
  983. #log_datefmt: '%H:%M:%S'
  984. #log_datefmt_logfile: '%Y-%m-%d %H:%M:%S'
  985. # The format of the console logging messages. Allowed formatting options can
  986. # be seen here: http://docs.python.org/library/logging.html#logrecord-attributes
  987. #
  988. # Console log colors are specified by these additional formatters:
  989. #
  990. # %(colorlevel)s
  991. # %(colorname)s
  992. # %(colorprocess)s
  993. # %(colormsg)s
  994. #
  995. # Since it is desirable to include the surrounding brackets, '[' and ']', in
  996. # the coloring of the messages, these color formatters also include padding as
  997. # well. Color LogRecord attributes are only available for console logging.
  998. #
  999. #log_fmt_console: '%(colorlevel)s %(colormsg)s'
  1000. #log_fmt_console: '[%(levelname)-8s] %(message)s'
  1001. #log_fmt_logfile: '%(asctime)s,%(msecs)03d [%(name)-17s][%(levelname)-8s] %(message)s'
  1002. # This can be used to control logging levels more specificically. This
  1003. # example sets the main salt library at the 'warning' level, but sets
  1004. # 'salt.modules' to log at the 'debug' level:
  1005. # log_granular_levels:
  1006. # 'salt': 'warning'
  1007. # 'salt.modules': 'debug'
  1008. #
  1009. #log_granular_levels: {}
  1010. ##### Node Groups ######
  1011. ##########################################
  1012. # Node groups allow for logical groupings of minion nodes. A group consists of
  1013. # a group name and a compound target. Nodgroups can reference other nodegroups
  1014. # with 'N@' classifier. Ensure that you do not have circular references.
  1015. #
  1016. #nodegroups:
  1017. # group1: 'L@foo.domain.com,bar.domain.com,baz.domain.com or bl*.domain.com'
  1018. # group2: 'G@os:Debian and foo.domain.com'
  1019. # group3: 'G@os:Debian and N@group1'
  1020. # group4:
  1021. # - 'G@foo:bar'
  1022. # - 'or'
  1023. # - 'G@foo:baz'
  1024. ##### Range Cluster settings #####
  1025. ##########################################
  1026. # The range server (and optional port) that serves your cluster information
  1027. # https://github.com/ytoolshed/range/wiki/%22yamlfile%22-module-file-spec
  1028. #
  1029. #range_server: range:80
  1030. ##### Windows Software Repo settings #####
  1031. ###########################################
  1032. # Location of the repo on the master:
  1033. #winrepo_dir_ng: '/srv/salt/win/repo-ng'
  1034. # List of git repositories to include with the local repo:
  1035. #winrepo_remotes_ng:
  1036. # - 'https://github.com/saltstack/salt-winrepo-ng.git'
  1037. ##### Windows Software Repo settings - Pre 2015.8 #####
  1038. ########################################################
  1039. # Legacy repo settings for pre-2015.8 Windows minions.
  1040. #
  1041. # Location of the repo on the master:
  1042. #winrepo_dir: '/srv/salt/win/repo'
  1043. # Location of the master's repo cache file:
  1044. #winrepo_mastercachefile: '/srv/salt/win/repo/winrepo.p'
  1045. #
  1046. # List of git repositories to include with the local repo:
  1047. #winrepo_remotes:
  1048. # - 'https://github.com/saltstack/salt-winrepo.git'
  1049. # The refspecs fetched by winrepo remotes
  1050. #winrepo_refspecs:
  1051. # - '+refs/heads/*:refs/remotes/origin/*'
  1052. # - '+refs/tags/*:refs/tags/*'
  1053. ##### Returner settings ######
  1054. ############################################
  1055. # Which returner(s) will be used for minion's result:
  1056. #return: mysql
  1057. ###### Miscellaneous settings ######
  1058. ############################################
  1059. # Default match type for filtering events tags: startswith, endswith, find, regex, fnmatch
  1060. #event_match_type: startswith
  1061. # Save runner returns to the job cache
  1062. #runner_returns: False
  1063. # Permanently include any available Python 3rd party modules into thin and minimal Salt
  1064. # when they are generated for Salt-SSH or other purposes.
  1065. # The modules should be named by the names they are actually imported inside the Python.
  1066. # The value of the parameters can be either one module or a comma separated list of them.
  1067. #thin_extra_mods: foo,bar
  1068. #min_extra_mods: foo,bar,baz
  1069. ###### Keepalive settings ######
  1070. ############################################
  1071. # Warning: Failure to set TCP keepalives on the salt-master can result in
  1072. # not detecting the loss of a minion when the connection is lost or when
  1073. # it's host has been terminated without first closing the socket.
  1074. # Salt's Presence System depends on this connection status to know if a minion
  1075. # is "present".
  1076. # ZeroMQ now includes support for configuring SO_KEEPALIVE if supported by
  1077. # the OS. If connections between the minion and the master pass through
  1078. # a state tracking device such as a firewall or VPN gateway, there is
  1079. # the risk that it could tear down the connection the master and minion
  1080. # without informing either party that their connection has been taken away.
  1081. # Enabling TCP Keepalives prevents this from happening.
  1082. # Overall state of TCP Keepalives, enable (1 or True), disable (0 or False)
  1083. # or leave to the OS defaults (-1), on Linux, typically disabled. Default True, enabled.
  1084. #tcp_keepalive: True
  1085. # How long before the first keepalive should be sent in seconds. Default 300
  1086. # to send the first keepalive after 5 minutes, OS default (-1) is typically 7200 seconds
  1087. # on Linux see /proc/sys/net/ipv4/tcp_keepalive_time.
  1088. #tcp_keepalive_idle: 300
  1089. # How many lost probes are needed to consider the connection lost. Default -1
  1090. # to use OS defaults, typically 9 on Linux, see /proc/sys/net/ipv4/tcp_keepalive_probes.
  1091. #tcp_keepalive_cnt: -1
  1092. # How often, in seconds, to send keepalives after the first one. Default -1 to
  1093. # use OS defaults, typically 75 seconds on Linux, see
  1094. # /proc/sys/net/ipv4/tcp_keepalive_intvl.
  1095. #tcp_keepalive_intvl: -1