minion_conf.tmpl 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #
  2. # Salt minion config (Salt managed)
  3. #
  4. master: {{ salt_config['master'] }}
  5. master_port: {{ salt_config['master_port'] }}
  6. ipv6: {{ salt_config['ipv6'] }}
  7. # When waiting for a master to accept the minion's public key, salt will
  8. # continuously attempt to reconnect until successful. This is the time, in
  9. # seconds, between those reconnection attempts.
  10. acceptance_wait_time: 10
  11. # If this is nonzero, the time between reconnection attempts will increase by
  12. # acceptance_wait_time seconds per iteration, up to this maximum. If this is
  13. # set to zero, the time between reconnection attempts will stay constant.
  14. acceptance_wait_time_max: 0
  15. # Cache rendered pillar data on the minion. Default is False.
  16. # This may cause 'cachedir'/pillar to contain sensitive data that should be
  17. # protected accordingly.
  18. minion_pillar_cache: False
  19. # Set this option to 'True' to force a 'KeyError' to be raised whenever an
  20. # attempt to retrieve a named value from pillar fails. When this option is set
  21. # to 'False', the failed attempt returns an empty string. Default is 'False'.
  22. pillar_raise_on_missing: True
  23. # The state_verbose and state_output settings can be used to change the way
  24. # state system data is printed to the display. By default all data is printed.
  25. # The state_verbose setting can be set to True or False, when set to False
  26. # all data that has a result of True and no changes will be suppressed.
  27. state_verbose: False
  28. # The state_output_diff setting changes whether or not the output from
  29. # successful states is returned. Useful when even the terse output of these
  30. # states is cluttering the logs. Set it to True to ignore them.
  31. #state_output_diff: False
  32. # The state_output_profile setting changes whether profile information
  33. # will be shown for each state run.
  34. #state_output_profile: True