vagrant-bosh 0.0.7 → 0.0.8
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 +4 -4
- data/LICENSE +1 -1
- data/README.md +3 -9
- data/bosh-provisioner/assets/bosh-provisioner +0 -0
- data/docs/build-aws-stemcell.md +3 -3
- data/lib/vagrant-bosh/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 49844c5fdb1a744bc303293d0f0d4a24bef06da0
|
|
4
|
+
data.tar.gz: d7361f9eb723e61119c225fc8052069edf95975b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0600bd78ed8788b45f53155a68da5a9b4441babaa63587e4b899341a148ef827e137cb808c9b06b4790d16ffd7f54f18a55fa82048aec867baca5b2c252bc198
|
|
7
|
+
data.tar.gz: 70fc4cdb8c0c194e8a3da3d812cea3d809a53a5ff70fc20e4e2adaf3681d069f949d398166f87d7c8743e6f3ca941b29de3d7aa369d8e1d9070b6d70b686b258
|
data/LICENSE
CHANGED
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
|
|
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
|
```
|
|
Binary file
|
data/docs/build-aws-stemcell.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
!!! Stemcells produced using this method should NOT be used in production !!!
|
|
4
4
|
|
|
5
|
-
To quickly
|
|
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 `
|
|
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.
|
data/lib/vagrant-bosh/version.rb
CHANGED
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.
|
|
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-
|
|
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.
|