oscar 0.5.4 → 0.5.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 020161ae854f1bcafb490f3cad43dc241bc4d939
4
- data.tar.gz: b255d9aa4b37827f3ef8568fad5336f15c6f7bd8
3
+ metadata.gz: 95b614c2cb614321ea107824abcf4e93bfef8c74
4
+ data.tar.gz: a402c1362bc5d9a90897ccfa4bbc6a7092b66918
5
5
  SHA512:
6
- metadata.gz: 41c941b043181febd374c20233de09e3f3039ee69fa274228fcc3eb1d65a1d1431862a0f809d56599d6b2d4fe0400bd6c28819507c68b715d7d1967ade23aa4c
7
- data.tar.gz: fb72a733438f95cf302389d88961f35f8a110be20ee7e3976cc73d8dd2ee9e5487a80e9a2009cf18a79c36fdf2c6f2ffacfe61a491a0ba35ac7f1d11e8e3c14a
6
+ metadata.gz: 812bf6f960d684f967113bc731cb71bced6a8005c0de3ad73dcc730a787b89b1c056e5ce4430a9d23f3f69e0b539f82a38207cb4a63f6ed075afc87c0ec3f7eb
7
+ data.tar.gz: 725d32c4242a4881aec674570d54f3880b389ee0b0acfcd3f5bd8a7267096197b1a38f0980c2bc80bf72f9c205aeed27837a865e41fa0e2891c72ad732237f74
data/.gitignore CHANGED
@@ -1,3 +1,5 @@
1
1
  .vagrant
2
2
  config.yaml
3
3
  .pe_build
4
+ *.gem
5
+ **/.DS_Store
data/CHANGELOG CHANGED
@@ -1,6 +1,21 @@
1
1
  CHANGELOG
2
2
  =========
3
3
 
4
+ 0.5.5
5
+ -----
6
+
7
+ 2018-10-11
8
+
9
+ This is an update release to support PE 2019.0
10
+
11
+ * Update vagrant-pe_build dependency to 0.18.0 or newer for PE 2019.0
12
+
13
+ * Updates and fixes to templates used by `vagrant oscar init`
14
+
15
+ Many thanks to [Thirumoorthi R](https://github.com/thirumoorthir)
16
+ for contributing improvements to the `oscar init` templates!
17
+
18
+
4
19
  0.5.4
5
20
  -----
6
21
 
data/README.markdown CHANGED
@@ -18,7 +18,7 @@ Define a set of VMs:
18
18
 
19
19
  └> vagrant oscar init-vms \
20
20
  --master master=puppetlabs/centos-7.2-64-nocm \
21
- --agent first=puppetlabs/centos-6.6-64-nocm \
21
+ --agent first=puppetlabs/centos-7.2-64-nocm \
22
22
  --agent second=puppetlabs/ubuntu-14.04-64-nocm
23
23
  Your environment has been initialized with the following configuration:
24
24
 
@@ -107,5 +107,6 @@ class Oscar::Command::InitVMs < Vagrant.plugin('2', :command)
107
107
 
108
108
  def pe_build
109
109
  {'pe_build' => {'version' => @pe_version}}
110
+ {'pe_build' => {'download_root' => "https://s3.amazonaws.com/pe-builds/released/:version"}}
110
111
  end
111
112
  end
data/lib/oscar/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Oscar
2
- VERSION = '0.5.4'
2
+ VERSION = '0.5.5'.freeze
3
3
  end
data/oscar.gemspec CHANGED
@@ -20,7 +20,7 @@ Gem::Specification.new do |gem|
20
20
  gem.homepage = 'https://github.com/oscar-stack/oscar'
21
21
 
22
22
  gem.add_dependency 'vagrant-hosts', '~> 2.8'
23
- gem.add_dependency 'vagrant-pe_build', '>= 0.17.0', '< 1.0'
23
+ gem.add_dependency 'vagrant-pe_build', '>= 0.18.0', '< 1.0'
24
24
  gem.add_dependency 'vagrant-auto_network', '~> 1.0'
25
25
  gem.add_dependency 'vagrant-config_builder', '~> 1.3'
26
26
 
@@ -7,7 +7,7 @@ roles:
7
7
  - type: virtualbox
8
8
  linked_clone: true
9
9
  customize:
10
- - [modifyvm, !ruby/sym id, '--memory', 2048]
10
+ - [modifyvm, !ruby/sym id, '--memory', 4048]
11
11
  provisioners:
12
12
  - {type: hosts, sync_hosts: true}
13
13
  - {type: pe_bootstrap, role: !ruby/sym master}
@@ -20,4 +20,4 @@ roles:
20
20
  linked_clone: true
21
21
  provisioners:
22
22
  - {type: hosts, sync_hosts: true}
23
- - {type: pe_agent, master: pe-puppet-master}
23
+ - {type: pe_agent, master: master}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oscar
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.4
4
+ version: 0.5.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adrien Thebo
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2018-08-16 00:00:00.000000000 Z
12
+ date: 2018-10-11 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: vagrant-hosts
@@ -31,7 +31,7 @@ dependencies:
31
31
  requirements:
32
32
  - - ">="
33
33
  - !ruby/object:Gem::Version
34
- version: 0.17.0
34
+ version: 0.18.0
35
35
  - - "<"
36
36
  - !ruby/object:Gem::Version
37
37
  version: '1.0'
@@ -41,7 +41,7 @@ dependencies:
41
41
  requirements:
42
42
  - - ">="
43
43
  - !ruby/object:Gem::Version
44
- version: 0.17.0
44
+ version: 0.18.0
45
45
  - - "<"
46
46
  - !ruby/object:Gem::Version
47
47
  version: '1.0'