tiller 0.0.7 → 0.0.8
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/bin/tiller +1 -1
- data/examples/etc/tiller/common.yaml +5 -5
- data/examples/etc/tiller/templates/sensu_client.erb +2 -2
- data/lib/tiller/data/random.rb +20 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0a1ee91c5860d98da73e05ec9e78430309dc9062
|
4
|
+
data.tar.gz: 15300fffec069df95fab3cbd081ce471ee6c40d1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6ce64fe320bff5680c8b8ed103656c267b145ea0d66b80b338e5110a2ac3eee1f938afd42fdf931c897720da7c30eca758bd292897999a67b3487fc884964564
|
7
|
+
data.tar.gz: e3a55abb0cf59af863abc9752e966ea315a9c46bc4ec14e51239e0eea6a60fbd048669d69e136891c1bc44a2b56cea69f383dd9ef2288aa185c49ffc048fce0a
|
data/bin/tiller
CHANGED
@@ -18,16 +18,16 @@
|
|
18
18
|
# so you can inspect your templates.
|
19
19
|
exec: date
|
20
20
|
|
21
|
-
# data_sources: Sources of data. Here, we're pulling in the provided FileDataSource (ships with
|
22
|
-
# NetworkDataSource under examples/lib/tiller. This is found because we set tiller_lib when we
|
23
|
-
# executable. We're not pulling in the example DummyDataSource, because it also provides target_values,
|
24
|
-
# overwrite the target_values from FileDataSource - you should only have one DataSource providing this information,
|
21
|
+
# data_sources: Sources of data. Here, we're pulling in the provided FileDataSource and EnvironmentDataSource (ships with
|
22
|
+
# this gem), and also the NetworkDataSource under examples/lib/tiller. This is found because we set tiller_lib when we
|
23
|
+
# called the tiller executable. We're not pulling in the example DummyDataSource, because it also provides target_values,
|
24
|
+
# so would overwrite the target_values from FileDataSource - you should only have one DataSource providing this information,
|
25
25
|
# otherwise your templates may end up in strange places you didn't expect!
|
26
26
|
data_sources:
|
27
27
|
- file
|
28
|
+
- environment
|
28
29
|
- network
|
29
30
|
|
30
|
-
|
31
31
|
# template_sources: Sources of templates, in priority order (first takes precendence). Again using the provided
|
32
32
|
# FileTemplateSource (uses templates under <tiller_base>/templates), and also because we set tiller_lib, we can use
|
33
33
|
# DummyTemplateSource which creates a single "dummy.erb" template.
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# Random datasource for Tiller. Provides Base64, UUID and other useful random strings
|
2
|
+
|
3
|
+
require 'securerandom'
|
4
|
+
|
5
|
+
class RandomDataSource < Tiller::DataSource
|
6
|
+
|
7
|
+
def global_values
|
8
|
+
{
|
9
|
+
'random_base64' => SecureRandom.base64,
|
10
|
+
'random_hex' => SecureRandom.hex,
|
11
|
+
'random_bytes' => SecureRandom.random_bytes,
|
12
|
+
'random_number_10' => SecureRandom.random_number(10),
|
13
|
+
'random_number_100' => SecureRandom.random_number(100),
|
14
|
+
'random_number_1000' => SecureRandom.random_number(1000),
|
15
|
+
'random_urlsafe_base64' => SecureRandom.urlsafe_base64,
|
16
|
+
'random_uuid' => SecureRandom.uuid
|
17
|
+
}
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tiller
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mark Round
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-08-
|
11
|
+
date: 2014-08-05 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: A tool to create configuration files in Docker containers from a variety
|
14
14
|
of sources. See https://github.com/markround/tiller for examples and documentation.
|
@@ -28,6 +28,7 @@ files:
|
|
28
28
|
- examples/lib/tiller/template/dummy.rb
|
29
29
|
- lib/tiller/data/environment.rb
|
30
30
|
- lib/tiller/data/file.rb
|
31
|
+
- lib/tiller/data/random.rb
|
31
32
|
- lib/tiller/datasource.rb
|
32
33
|
- lib/tiller/template/file.rb
|
33
34
|
- lib/tiller/templatesource.rb
|