teamd-installer 0.0.23 → 0.0.24
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/docker/Dockerfile +1 -1
- data/lib/teamd/installer/template_config.rb +1 -1
- 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: 732e7baec34878768c63eff297d8ea0832ed712a
|
4
|
+
data.tar.gz: a7e8bde62b4ac750b0f02e6f508cf21281a2fa22
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 899e9fba22504d13c77ee30a0221eaa92f8a165d57f4c3295d42970790b070aec50ac34d4a1f1b08b98b392f9294d22da4799a72614b78a8d06394bbc05c2e91
|
7
|
+
data.tar.gz: 38b674b68d33490994a9aff4c67acd062139d2a486c1358c533757f999f79255e95cd2f775ea5d29b0776fd8da92ebb05de6df4316efb14bcae960815e3a9b46
|
data/docker/Dockerfile
CHANGED
@@ -4,6 +4,6 @@ MAINTAINER Mathias Kaufmann <me@stei.gr>
|
|
4
4
|
RUN apk update && \
|
5
5
|
apk add bash wget gnupg util-linux coreutils bzip2 && \
|
6
6
|
gem update --system --no-ri --no-rdoc
|
7
|
-
RUN gem install --no-ri --no-rdoc --version 0.0.
|
7
|
+
RUN gem install --no-ri --no-rdoc --version 0.0.24 teamd-installer
|
8
8
|
|
9
9
|
ENTRYPOINT ["/usr/bin/teamd-installer"]
|
@@ -11,7 +11,7 @@ module Teamd
|
|
11
11
|
puts "Set discovery token, hostname and manage_etc_hosts"
|
12
12
|
output = {
|
13
13
|
"coreos" => {
|
14
|
-
"
|
14
|
+
"etcd2" => {
|
15
15
|
"discovery" => "https://discovery.etcd.io/#{@etcd_discovery_id}",
|
16
16
|
"advertise-client-urls" => "http://$private_ipv4:2379",
|
17
17
|
"initial-advertise-peer-urls" => "http://$private_ipv4:2380",
|