Skip to content

Instantly share code, notes, and snippets.

Created August 16, 2016 19:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/41a2bd9e502fd2789b1b59abde1716c9 to your computer and use it in GitHub Desktop.
Save anonymous/41a2bd9e502fd2789b1b59abde1716c9 to your computer and use it in GitHub Desktop.
myVM.vm.provision :salt, run: 'always' do |salt|
salt.run_highstate = true
salt.bootstrap_options = '-F -c /tmp'
salt.colorize = true
salt.install_master = true
salt.log_level = 'info'
salt.master_config = 'etc/master'
salt.master_key = 'etc/pki/master/master.pem'
salt.master_pub = 'etc/pki/master/master.pub'
salt.masterless = false
salt.minion_config = 'etc/master_minion'
salt.minion_id = 'salt'
salt.minion_key = 'etc/pki/minion/suds01.pem'
salt.minion_pub = 'etc/pki/minion/suds01.pub'
salt.seed_master = { 'suds01' => 'etc/pki/minion/suds01.pub',
'suds02' => 'etc/pki/minion/suds02.pub',
'suds03' => 'etc/pki/minion/suds03.pub'}
salt.verbose = true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment