teamd-installer 0.0.10 → 0.0.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/lib/teamd/installer/cli.rb +2 -2
- data/lib/teamd/installer/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: 8578440a9678074b1c3813ab42eb732ce65cbc7a
|
|
4
|
+
data.tar.gz: 4ff09896faace3ed727fda649003761eb38d2e64
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5c99df0a024f1726a90f5ba23de13fd1405807fad9089570467e7d7dd7a700bc614a1a205c95bd455276563978ee357dcd6d74096f393ece14337c4f484b79a1
|
|
7
|
+
data.tar.gz: 209c295ca39d0c907e00feede99ef666ee29aa845f28ab6c169dfe67d6f93b2bebed889a3ff4beccc30ffde20b76e5340f64263c127e242864f7f5f92db7b27f
|
data/lib/teamd/installer/cli.rb
CHANGED
|
@@ -39,7 +39,7 @@ module Teamd
|
|
|
39
39
|
method_option :installer_script, type: :string, default: "/tmp/installer"
|
|
40
40
|
method_option :reboot, type: :boolean, default: :true
|
|
41
41
|
def install
|
|
42
|
-
build_cloud_config options
|
|
42
|
+
Cli.build_cloud_config options
|
|
43
43
|
@installer = Script.download options[:installer_url]
|
|
44
44
|
@disk,@major,@minor = Disk.default
|
|
45
45
|
Disk.create @disk, @major, @minor
|
|
@@ -56,7 +56,7 @@ module Teamd
|
|
|
56
56
|
method_option :etcd_cluster_size, type: :numeric, default: 3
|
|
57
57
|
method_option :cloud_config, type: :string, default: "/tmp/user_data"
|
|
58
58
|
def prepare
|
|
59
|
-
build_cloud_config options
|
|
59
|
+
Cli.build_cloud_config options
|
|
60
60
|
end
|
|
61
61
|
end
|
|
62
62
|
end
|