bosh-gen 0.16.1 → 0.16.2
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2b8bef11d778d849e2b0dd3d258fbaa16460951b
|
4
|
+
data.tar.gz: ea6ed1e3c9b929f6c79b48fec68c8c21ec172d9d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 94390d7d2e4b1a648fc9d6e8d0395c4b360e1a5412c8bd77f181eae625a91abb15ee33597b82c09468253f62d8d76b5955841e25a8cc8d363ac87e2d431fd842
|
7
|
+
data.tar.gz: 1ad80fce083b510811135c95e1a6446ba9074c1cc9ec093ae33bd901a3fd9f1333b8d258427e96c86ccb762bc217b36098912a539599f37c240a1a268d681861
|
data/ChangeLog.md
CHANGED
@@ -5,6 +5,8 @@
|
|
5
5
|
* `new` creates an initial job of the same name.
|
6
6
|
* default to running job process as vcap:vcap [v0.16.1]
|
7
7
|
* Default $INCLUDE_PATH & $LD_LIBRARY_PATH to '' if not set [v0.16.1]
|
8
|
+
* Fix make_manifest for aws-ec2 [v0.16.2]
|
9
|
+
* Remove references to OpenStack until we have spiff templates generated [v0.16.2]
|
8
10
|
|
9
11
|
The initial job is configured to have the xyz.leader_address property, and an example conf file that shows how to use it.
|
10
12
|
|
@@ -11,20 +11,13 @@ cd <%= repository_name %>
|
|
11
11
|
bosh upload release releases/<%= project_name %>-1.yml
|
12
12
|
```
|
13
13
|
|
14
|
-
For [bosh-lite](https://github.com/cloudfoundry/bosh-lite), you can quickly create a deployment manifest & deploy a
|
14
|
+
For [bosh-lite](https://github.com/cloudfoundry/bosh-lite), you can quickly create a deployment manifest & deploy a cluster:
|
15
15
|
|
16
16
|
```
|
17
17
|
templates/make_manifest warden
|
18
18
|
bosh -n deploy
|
19
19
|
```
|
20
20
|
|
21
|
-
For Openstack (Nova Networks), create a single VM:
|
22
|
-
|
23
|
-
```
|
24
|
-
templates/make_manifest openstack-nova
|
25
|
-
bosh -n deploy
|
26
|
-
```
|
27
|
-
|
28
21
|
For AWS EC2, create a single VM:
|
29
22
|
|
30
23
|
```
|
@@ -5,10 +5,9 @@ set -e
|
|
5
5
|
infrastructure=$1
|
6
6
|
template_prefix="<%= project_name %>"
|
7
7
|
|
8
|
-
if [ "$infrastructure" != "
|
9
|
-
[ "$infrastructure" != "aws-ec2" ] && \
|
8
|
+
if [ "$infrastructure" != "aws-ec2" ] && \
|
10
9
|
[ "$infrastructure" != "warden" ] ; then
|
11
|
-
echo "usage: ./make_manifest <
|
10
|
+
echo "usage: ./make_manifest <aws-ec2|warden>"
|
12
11
|
exit 1
|
13
12
|
fi
|
14
13
|
|
@@ -27,20 +26,13 @@ if [[ $DIRECTOR_NAME = "warden" ]]; then
|
|
27
26
|
fi
|
28
27
|
fi
|
29
28
|
|
30
|
-
if [[ $
|
31
|
-
if [[ $
|
29
|
+
if [[ $infrastructure = "aws-ec2" ]]; then
|
30
|
+
if [[ $DIRECTOR_CPI != "aws" ]]; then
|
32
31
|
echo "Not targeting an AWS BOSH. Please use 'bosh target' before running this script."
|
33
32
|
exit 1
|
34
33
|
fi
|
35
34
|
fi
|
36
35
|
|
37
|
-
if [[ $DIRECTOR_CPI != "openstack" ]]; then
|
38
|
-
if [[ $infrastructure = "openstack-nova" ]]; then
|
39
|
-
echo "Not targeting an OpenStack BOSH. Please use 'bosh target' before running this script."
|
40
|
-
exit 1
|
41
|
-
fi
|
42
|
-
fi
|
43
|
-
|
44
36
|
templates=$(dirname $0)
|
45
37
|
release=$templates/..
|
46
38
|
tmpdir=$release/tmp
|
data/lib/bosh/gen/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bosh-gen
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.16.
|
4
|
+
version: 0.16.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dr Nic Williams
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-02-
|
11
|
+
date: 2014-02-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|