vagrant-flow 1.0.13 → 1.0.14

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: 71d633a3032036f7727d6912a838f75f5fe06b7a
4
- data.tar.gz: ba446d7fc6993fe980463484d85d8f8c5a62da09
3
+ metadata.gz: 80519287c51d5fecfce4b0fb0064976b0930a57d
4
+ data.tar.gz: dffb854411e5df8b0be42380923ca13c66c2d2ce
5
5
  SHA512:
6
- metadata.gz: e80565ffd891efef85388a43d8679431c4ce6480c44624de1e005af1862949b6a2b61603099df849c2779e88daca74e95f1ba7f24b378f2ae68b322ae2355fe9
7
- data.tar.gz: 361828b63f191d4c75d4cb9ced0dc6c6fd2f04cc7fe57180d184f2aaff544ed18a7e1f8700b3d7bf7335c2d9bee0f2dc848c7e3244287ce2f5c5eb9c2490c236
6
+ metadata.gz: 67ba5d4c35627c6bf3c8a9ff393eaccd661fa6943345dc64635d5b9374ff7fa77a235f38e342745e96f9dcffad8db0556dc783a71465308213f6d9d64ccbc5b2
7
+ data.tar.gz: c2e838fe6ec032f545eb7f68cf2120d465dcb2bea0cfa6cec253a86a4ad1168c8b1df266c8e8e75c8b5e3b999eeb34abfe0b3cec0cebc7a3cf0c749dc569bafe
data/README.md CHANGED
@@ -116,9 +116,11 @@ vagrant flow multiinit -l boxname1:demandcube/centos-65_x86_64-VB-4.3.8,boxname2
116
116
  vagrant flow multiinit
117
117
  #Launch the boxes
118
118
  vagrant up
119
+ #Or launch with digitalocean
120
+ vagrant up --provider=digital_ocean
119
121
  ```
120
122
 
121
- Example multiinitconfig.yml file (for use with no optional command line arguments or by pointing to non-default file with -g option). The format of this yaml file MUST be followed, but can easily be expanded to include more of fewer machines
123
+ Example multiinitconfig.yml file (for use with no optional command line arguments or by pointing to non-default file with -g option). The format and parameters of this yaml file MUST be followed, but can easily be expanded to include more of fewer machines
122
124
  ```
123
125
  ---
124
126
  :intnetName: neverwinterDP
@@ -132,6 +134,27 @@ machines:
132
134
 
133
135
  ```
134
136
 
137
+ Example multiinitconfig.yml file for use with virtualbox and digitalocean providers. All the extra parameters are required to make digitalocean work.
138
+ ```
139
+ ---
140
+ :sshPrivateKeyPath: ~/.ssh/id_rsa #Points to your private key file
141
+ :digitalOceanApiKey: yourkeygoeshere #Get your digitalocen api key and client id from https://cloud.digitalocean.com/api_access
142
+ :digitalOceanClientId: youclientidgoeshere
143
+ :digitalOceanRegion: San Francisco 1 #This corresponds to the region option when creating droplets
144
+ :intnetName: neverwinterDP
145
+ machines:
146
+ - name: sparkngin1
147
+ url: demandcube/centos-65_x86_64-VB-4.3.8
148
+ digitalOceanImage: CentOS 6.5 x64 #This is the Image name you choose when creating a new droplet
149
+ - name: sparkngin2
150
+ url: demandcube/centos-65_x86_64-VB-4.3.8
151
+ digitalOceanImage: CentOS 6.5 x64
152
+ - name: jenkinsdp
153
+ url: demandcube/centos-65_x86_64-VB-4.3.8
154
+ digitalOceanImage: CentOS 6.5 x64
155
+
156
+ ```
157
+
135
158
  * * *
136
159
  ##hostfile
137
160
  Usage: vagrant flow hostfile [-qndoh]
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module VagrantFlow
3
- VERSION = "1.0.13"
3
+ VERSION = "1.0.14"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-flow
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.13
4
+ version: 1.0.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steve Morin