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: ea16e8b0470845cd60d2eadb321ad7bedb442d6a
4
- data.tar.gz: eee570b247ef39ee7ce38d6ed8e2537ade6dff09
3
+ metadata.gz: 2b8bef11d778d849e2b0dd3d258fbaa16460951b
4
+ data.tar.gz: ea6ed1e3c9b929f6c79b48fec68c8c21ec172d9d
5
5
  SHA512:
6
- metadata.gz: 318909a48397e0dc6c423b5d7f4b40aa8520eab59e501d81669a71c3acca5b16783a0252b5c9dc9f684cfa5b2cc5fdda9f79be622e843808b1f15cdc755c8c55
7
- data.tar.gz: ad91f2f4db970db30586f6f9b18654a3ddd9a295260110c7ddb6e89c6d823b788b069f8690c6ace6a6a532ae074eecc57aa9734ebbc027df2870f58be5588fbe
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 3 VM cluster:
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" != "openstack-nova" ] && \
9
- [ "$infrastructure" != "aws-ec2" ] && \
8
+ if [ "$infrastructure" != "aws-ec2" ] && \
10
9
  [ "$infrastructure" != "warden" ] ; then
11
- echo "usage: ./make_manifest <openstack-nova|warden>"
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 [[ $DIRECTOR_CPI = "aws" ]]; then
31
- if [[ $infrastructure = "aws-ec2" ]]; then
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
@@ -1,5 +1,5 @@
1
1
  module Bosh
2
2
  module Gen
3
- VERSION = "0.16.1"
3
+ VERSION = "0.16.2"
4
4
  end
5
5
  end
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.1
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 00:00:00.000000000 Z
11
+ date: 2014-02-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor