bosh_cli_plugin_redis 0.2.2 → 0.2.3
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.
- data/ChangeLog.md +1 -0
- data/README.md +5 -1
- data/bosh_cli_plugin_redis.gemspec +1 -1
- data/lib/bosh/cli/commands/redis.rb +2 -1
- metadata +4 -4
data/ChangeLog.md
CHANGED
@@ -28,6 +28,7 @@ Other features/fixes:
|
|
28
28
|
|
29
29
|
* Validates the resource size with available sizes in the template [v0.2.1]
|
30
30
|
* `bosh create redis --disk 10000` to disk persistent disk size (Mb) [v0.2.2]
|
31
|
+
* Fix #1 - pass properties.redis.persistent_disk to templates [v0.2.3]
|
31
32
|
|
32
33
|
## v0.1 - redis-cf-plugin
|
33
34
|
|
data/README.md
CHANGED
@@ -6,7 +6,7 @@ Example create/delete scenario that includes binding the redis service to a Clou
|
|
6
6
|
|
7
7
|
```
|
8
8
|
$ bosh prepare redis
|
9
|
-
$ bosh create redis
|
9
|
+
$ bosh create redis
|
10
10
|
$ bosh show redis uri
|
11
11
|
redis://:c1da049a75b3@0.redis.default.demoredis.microbosh:6379/0
|
12
12
|
$ cf set-env myapp REDIS_URI redis://:c1da049a75b3@0.redis.default.redis-123.microbosh:6379/0
|
@@ -17,6 +17,10 @@ $ bosh delete redis
|
|
17
17
|
|
18
18
|
The resulting redis servers can be discovered and accessed by any systems (such as Cloud Foundry applications) using the same bosh (or microbosh) or a connected DNS.
|
19
19
|
|
20
|
+
## Why not use Cloud Foundry v2 services?
|
21
|
+
|
22
|
+
See [discussion](https://groups.google.com/a/cloudfoundry.org/d/msg/bosh-users/yoXGZMcWduc/8xocVYxpKakJ) on vcap-dev mailing list.
|
23
|
+
|
20
24
|
## Requirements
|
21
25
|
|
22
26
|
You must use the same BOSH for deploying redis as you use to deploy Cloud Foundry (unless your DNS is configured to be shared across the two BOSH).
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |spec|
|
4
4
|
spec.name = "bosh_cli_plugin_redis"
|
5
|
-
spec.version = "0.2.
|
5
|
+
spec.version = "0.2.3"
|
6
6
|
spec.authors = ["Dr Nic Williams"]
|
7
7
|
spec.email = ["drnicwilliams@gmail.com"]
|
8
8
|
spec.description = %q{Create dedicated Redis servers using Bosh}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bosh_cli_plugin_redis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-07-
|
12
|
+
date: 2013-07-09 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bosh_cli
|
@@ -104,7 +104,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
104
104
|
version: '0'
|
105
105
|
segments:
|
106
106
|
- 0
|
107
|
-
hash:
|
107
|
+
hash: 1776481415658792640
|
108
108
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
109
109
|
none: false
|
110
110
|
requirements:
|
@@ -113,7 +113,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
113
113
|
version: '0'
|
114
114
|
segments:
|
115
115
|
- 0
|
116
|
-
hash:
|
116
|
+
hash: 1776481415658792640
|
117
117
|
requirements: []
|
118
118
|
rubyforge_project:
|
119
119
|
rubygems_version: 1.8.25
|