consul-templaterb 1.0.4 → 1.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +11 -0
- data/bin/consul-templaterb +1 -1
- data/lib/consul/async/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 665f6314688398c4384fcaf1759f438e3f48fe61e0308a4cd0d3bf72a45f5355
|
4
|
+
data.tar.gz: 24188ffb9e2e43bf3a4b2d879e50758b185897c2fd9bb3028f115fb9e0749899
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7d8b2daa28c4e3d44206c1bc3790ea59f82521243de4cb650ad3ae054b6cec270e2c3bfdb8c5b09af79815485f2e840dc111fe9368e1c0a920d1098a54b6b3dc
|
7
|
+
data.tar.gz: ac954c31e366d638cb62777a6fe4da7d9e3970de32a3d220c3d7b3f85d744f07bed06dd2bef034b7409b0a74b97daa14ac6cc6f8a2db7fe28a751700c898ddf9
|
data/README.md
CHANGED
@@ -76,6 +76,17 @@ $ gem install consul-templaterb
|
|
76
76
|
[...]
|
77
77
|
```
|
78
78
|
|
79
|
+
If you simply want to use the executable on your favorite linux distribution, you
|
80
|
+
have to install first: ruby and ruby dev.
|
81
|
+
|
82
|
+
### Quick install on Ubuntu
|
83
|
+
|
84
|
+
```shell
|
85
|
+
sudo apt-get install ruby ruby-dev && sudo gem install consul-templaterb
|
86
|
+
```
|
87
|
+
|
88
|
+
You can now use it directly using the binary `consul-templaterb` in your path
|
89
|
+
|
79
90
|
## Usage of consul-templaterb
|
80
91
|
|
81
92
|
### Show help
|
data/bin/consul-templaterb
CHANGED
@@ -21,7 +21,7 @@ options = {
|
|
21
21
|
debug: {
|
22
22
|
network: false
|
23
23
|
},
|
24
|
-
base_url: ENV['CONSUL_HTTP_ADDR'] || 'http://
|
24
|
+
base_url: ENV['CONSUL_HTTP_ADDR'] || 'http://localhost:8500',
|
25
25
|
token: nil,
|
26
26
|
retry_duration: 10, # On error, retry after n seconds
|
27
27
|
min_duration: 5, # On sucess and when differences are found
|
data/lib/consul/async/version.rb
CHANGED