open-dock 0.1.10 → 0.1.11
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 +7 -5
- data/lib/open-dock/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: 0736b6c4ad382fa0fb7ec86c5a99f6c3377ebb51
|
4
|
+
data.tar.gz: bd21bfa4b3a8ccf11eabeef91394894780335d5f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2451fa355e2b2509753c28f089857e9a7b4bed7859d6255028146567e3f0dde2d9e11cb3cb3bb88848bdf1233abb7516b11b053628de96b579f978a6ec1f4468
|
7
|
+
data.tar.gz: 184616314c25f8d45bc3daabb84940906dfc2676f64465fea1a8909a3d8c958796a798741215dc7b76646328204521374be7e70b49b2525cb3ca7976327a9a9a
|
data/README.md
CHANGED
@@ -2,9 +2,11 @@
|
|
2
2
|
|
3
3
|
Gem for orchestrating the creation of infrastructures of hosts and containers. You can manage CREATION (in any provider: DigitalOcean, Gcloud, vagrant for the moment), SHIPPING (with docker containers) and CONFIGURING (with Chef). All with 3 commands per host:
|
4
4
|
|
5
|
-
1. `ops create prod.
|
6
|
-
1. `ops ship prod.
|
7
|
-
1. `ops
|
5
|
+
1. `ops create prod.example.com`: Create hosts from all possible cloud providers (i.e.: DigitalOcean, GCloud, Rackspace, Linode ...).
|
6
|
+
1. `ops ship prod.example.com`: Ship those hosts with Docker containers.
|
7
|
+
1. `ops configure prod.example.com`: Build Chef cookbooks and configure/re-configure your servers.
|
8
|
+
|
9
|
+

|
8
10
|
|
9
11
|
## Installation
|
10
12
|
|
@@ -245,7 +247,7 @@ Create/delete domain names, create/delete hosts and ship/unship hosts:
|
|
245
247
|
|
246
248
|
OPS command is focused to cover first Provision configurations for a the Operations of your infrastructure.
|
247
249
|
|
248
|
-
You can create an infrastructure project (like me [/ops](https://github.com/jlebrijo/ops))
|
250
|
+
You can create an infrastructure project (like me [/ops](https://github.com/jlebrijo/ops))
|
249
251
|
|
250
252
|
```
|
251
253
|
mkdir ops && cd ops
|
@@ -288,7 +290,7 @@ Or integrate it within your Chef infrastructure project. Just add the gem to you
|
|
288
290
|
|
289
291
|
### v0.0.10
|
290
292
|
|
291
|
-
* First publication: split 'open-dock' gem from 'prun-ops' gem
|
293
|
+
* First publication: split 'open-dock' gem from 'prun-ops' gem
|
292
294
|
|
293
295
|
### v0.0.11
|
294
296
|
|
data/lib/open-dock/version.rb
CHANGED