vagrant-pe_build 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +52 -0
- data/lib/pe_build/version.rb +1 -1
- data/lib/vagrant_init.rb +1 -0
- metadata +3 -1
data/README.markdown
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
Vagrant PE build
|
2
|
+
================
|
3
|
+
|
4
|
+
Download and install Puppet Enterprise with Vagrant.
|
5
|
+
|
6
|
+
Synopsis
|
7
|
+
--------
|
8
|
+
|
9
|
+
`vagrant-pe_build` manages the downloading and installation of Puppet Enterprise
|
10
|
+
on Vagrant boxes to rapidly build a functioning Puppet environment.
|
11
|
+
|
12
|
+
Usage
|
13
|
+
-----
|
14
|
+
|
15
|
+
Vagrant::Config.run do |config|
|
16
|
+
config.pe_build.download_root = 'http://my.pe.download.mirror/installers'
|
17
|
+
config.pe_build.version = '2.7.0'
|
18
|
+
config.pe_build.filename = 'puppet-enterprise-2.7.0-all.tar.gz'
|
19
|
+
|
20
|
+
config.vm.define 'master' do |node|
|
21
|
+
node.vm.provision :puppet_enterprise_bootstrap do |provisioner|
|
22
|
+
provisioner.role = :master
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
config.vm.define 'agent1' do |node|
|
27
|
+
node.vm.provision :puppet_enterprise_bootstrap do |provisioner|
|
28
|
+
provisioner.role = :agent
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
Requirements
|
34
|
+
------------
|
35
|
+
|
36
|
+
`vagrant-pe_build` shells out to `curl` and `tar` so you'll need those
|
37
|
+
available.
|
38
|
+
|
39
|
+
[vagranthosts]: https://github.com/adrienthebo/vagrant-hosts
|
40
|
+
|
41
|
+
Puppet Enterprise relies on SSL for security so you'll need to ensure that your
|
42
|
+
SSL configuration isn't borked. [vagrant-hosts][vagranthosts] is recommended to
|
43
|
+
configure VMs with semi-sane DNS.
|
44
|
+
|
45
|
+
Contact
|
46
|
+
-------
|
47
|
+
|
48
|
+
* Source code: https://github.com/adrienthebo/puppet-network
|
49
|
+
* Issue tracker: https://github.com/adrienthebo/puppet-network/issues
|
50
|
+
|
51
|
+
If you have questions or concerns about this module, contact finch on #vagrant
|
52
|
+
on Freenode, or email adrien@puppetlabs.com.
|
data/lib/pe_build/version.rb
CHANGED
data/lib/vagrant_init.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require 'pe_build'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-pe_build
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -35,6 +35,7 @@ extra_rdoc_files: []
|
|
35
35
|
files:
|
36
36
|
- Gemfile
|
37
37
|
- LICENSE
|
38
|
+
- README.markdown
|
38
39
|
- bootstrap/base/provision/install_puppet_enterprise.sh
|
39
40
|
- bootstrap/master/post/relocate_puppet.sh
|
40
41
|
- doc/answers/README.markdown
|
@@ -55,6 +56,7 @@ files:
|
|
55
56
|
- lib/pe_build/provisioners/puppet_enterprise.rb
|
56
57
|
- lib/pe_build/provisioners/puppet_enterprise_bootstrap.rb
|
57
58
|
- lib/pe_build/version.rb
|
59
|
+
- lib/vagrant_init.rb
|
58
60
|
- templates/answers/agent.txt.erb
|
59
61
|
- templates/answers/master.txt.erb
|
60
62
|
- vagrant-pe_build.gemspec
|