vagrant-flow 1.0.13 → 1.0.14
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/README.md +24 -1
- data/lib/vagrant-flow/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 80519287c51d5fecfce4b0fb0064976b0930a57d
|
|
4
|
+
data.tar.gz: dffb854411e5df8b0be42380923ca13c66c2d2ce
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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]
|
data/lib/vagrant-flow/version.rb
CHANGED