vagrant-bosh 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2b71501a290476431595cba12152316f81b16e1b
4
- data.tar.gz: 422f7595bb2acd56ce07e24fd24bba962b9e9865
3
+ metadata.gz: 49844c5fdb1a744bc303293d0f0d4a24bef06da0
4
+ data.tar.gz: d7361f9eb723e61119c225fc8052069edf95975b
5
5
  SHA512:
6
- metadata.gz: bd4630ce239179fa6fd40cc540ccdcf05fa6cd2c574c6585e7570af5fb67bd0b68442248cb57217911804b9410f385ceb0aa549ad98ea7cbf20a2b8fc5bcb860
7
- data.tar.gz: c02f59b47e09827af921fa5318e056dcd6694156068245ea219a6dbd332654b4f29a76f62aeed530ec8f81b20d80d492ab7839dc66a9033bf12669e01571b7d7
6
+ metadata.gz: 0600bd78ed8788b45f53155a68da5a9b4441babaa63587e4b899341a148ef827e137cb808c9b06b4790d16ffd7f54f18a55fa82048aec867baca5b2c252bc198
7
+ data.tar.gz: 70fc4cdb8c0c194e8a3da3d812cea3d809a53a5ff70fc20e4e2adaf3681d069f949d398166f87d7c8743e6f3ca941b29de3d7aa369d8e1d9070b6d70b686b258
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2013 Dmitriy Kalinin
1
+ Copyright (c) 2014 Dmitriy Kalinin
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  BOSH provisioner allows to provision guest VM by specifying regular BOSH deployment manifest.
4
4
 
5
+ You might also be interested in [packer-bosh](https://github.com/cppforlife/packer-bosh).
6
+
5
7
 
6
8
  ### Usage
7
9
 
@@ -69,7 +71,7 @@ end
69
71
  - `create_release_cmd` (String, default: `bosh -n create release --force`)
70
72
 
71
73
 
72
- ### Using BOSH provisioner to build BOSH stemcells
74
+ ### Using provisioner to build BOSH stemcells
73
75
 
74
76
  See [building AWS Stemcell](docs/build-aws-stemcell.md).
75
77
 
@@ -78,20 +80,12 @@ See [building AWS Stemcell](docs/build-aws-stemcell.md).
78
80
 
79
81
  - Speed up apply step (Monit is sluggish)
80
82
 
81
- - Packer Provisioner API wrapper
82
-
83
- - Support non-Ubuntu vagrant boxes (currently provisioner uses `apt-get` to bootstrap deps)
84
-
85
- - Support non-tgz release source URLs
86
-
87
83
 
88
84
  ### Contributing
89
85
 
90
86
  ```
91
87
  git submodule update --recursive --init
92
88
 
93
- go/bin/test # or go/bin/build-linux-amd64
94
-
95
89
  # Spin up development Vagrant box with lib/ acting as BOSH provisioner
96
90
  ( cd dev/ && vagrant up )
97
91
  ```
@@ -2,7 +2,7 @@
2
2
 
3
3
  !!! Stemcells produced using this method should NOT be used in production !!!
4
4
 
5
- To quickly ligth BOSH stemcells for AWS:
5
+ To quickly create BOSH stemcells for AWS:
6
6
 
7
7
  1. Configure AWS Vagrant provider with your AWS account settings. For example:
8
8
 
@@ -47,7 +47,7 @@ config.vm.provision "bosh" do |c|
47
47
  end
48
48
  ```
49
49
 
50
- 3. Remove `cloud-init` package included by default in Ubuntu AMIs
50
+ 3. Remove `cloud-init` package included by default in Ubuntu AMIs
51
51
  to avoid conflicts with BOSH Agent auto configuration:
52
52
 
53
53
  ```
@@ -60,7 +60,7 @@ config.vm.provision "shell", inline: "echo 'LABEL=cloudimg-rootfs / ext4 defaul
60
60
  5. Once VM is provisioned, in AWS Console right-click on the VM and select `Cerate image` to create an AMI.
61
61
  Optionally make AMI public by changing its permissions if stemcell will be used from a different AWS account.
62
62
 
63
- 6. Unpack one of the officially published `ligth-bosh` stemcells and
63
+ 6. Unpack one of the officially published `light-bosh` stemcells and
64
64
  update `stemcell.MF` with new AMI reference, then repack.
65
65
 
66
66
  7. Upload your new light stemcell to a BOSH Director and use it in your deployment.
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module VagrantBosh
3
- VERSION = "0.0.7"
3
+ VERSION = "0.0.8"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-bosh
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmitriy Kalinin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-12 00:00:00.000000000 Z
11
+ date: 2014-08-13 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: BOSH provisioner allows to provision guest VM by specifying regular BOSH
14
14
  deployment manifest.