23decxf 发表于 2018-7-31 06:53:04

saltstack的安装及配置

  #绑定的IP:
  interface: 0.0.0.0
  # The tcp port used by the publisher:
  #publish_port: 4505
  #The user under which the salt master will run.
  #user: root
  #可单独设置,默认遵从于操作系统设置
  #max_open_files: 100000
  #The number of worker threads to start. These threads are used to manage
  #return calls made from minions to the master. If the master seems to be
  #running slowly, increase the number of threads. This setting can not be
  #set lower than 3.
  worker_threads: 5
  #The port used by the communication interface. The ret (return) port is the
  #interface used for the file server, authentication, job returns, etc.
  #ret_port: 4506
  #pidfile: /var/run/salt-master.pid
  #Directory used to store public key data:
  #pki_dir: /etc/salt/pki/master
  #Directory to store job and cache data:
  #cachedir: /var/cache/salt/master
  #Set the default timeout for the salt command and api. The default is 5
  #seconds.
  #timeout: 5
  #Set the directory used to hold unix sockets:
  #sock_dir: /var/run/salt/master
  #Include a config file from some other path:
  #include: /etc/salt/extra_config
  #Enable auto_accept, this setting will automatically accept all incoming
  #public keys from the minions. Note that this is insecure.
  #auto_accept: False
  #If the autosign_file is specified, incoming keys specified in the
  #autosign_file will be automatically accepted. This is insecure.Regular
  #expressions as well as globing lines are supported.
  #autosign_file: /etc/salt/autosign.conf

  #Works like autosign_file, but instead allows you to specify minion>  #which keys will automatically be rejected. Will override both membership in
  #the autosign_file and the auto_accept setting.
  #autoreject_file: /etc/salt/autoreject.conf
  #Allow minions to push files to the master. This is disabled by default, for
  #security purposes.
  #file_recv: False
  #####File Server settings #####
  ##########################################
  #Salt runs a lightweight file server written in zeromq to deliver files to
  #minions. This file server is built into the master daemon and does not
  #require a dedicated port.
  #log_file: /var/log/salt/master
  #The level of messages to send to the console.
  #One of 'garbage', 'trace', 'debug', info', 'warning', 'error', 'critical'.
  #log_level: warning
  #The level of messages to send to the log file.
  #One of 'garbage', 'trace', 'debug', info', 'warning', 'error', 'critical'.
  #If using 'log_granular_levels' this must be set to the highest desired level.
  #log_level_logfile: warning
  #The date and time format used in log messages. Allowed date/time formating
  #log_datefmt: '%H:%M:%S'
  #log_datefmt_logfile: '%Y-%m-%d %H:%M:%S'
  #####Node Groups         #####
  ##########################################
  #Node groups allow for logical groupings of minion nodes. A group consists of a group name and a compound target.
  #分组管理,注意group1前有两个空格
  #nodegroups:
  #group1: 'L@foo.domain.com,bar.domain.com,baz.domain.com and bl*.domain.com'
  #group2: 'G@os:Debian and foo.domain.com'
页: [1]
查看完整版本: saltstack的安装及配置