master 50 KB

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