contained 0.7.0 → 0.8.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0e7b386047099983a38eaf2abbee4a1fa369ccb6477d6669b2a75528d62a883e
4
- data.tar.gz: d046b94b3abac997c3d3b74eb3046684f143d11ba55c5e9acadc141ccaa58399
3
+ metadata.gz: de44c4a9646409b70c951f868cf1f60d753f72f6f14f9c68df242a493033b285
4
+ data.tar.gz: e460580a09f0fc0c18261b32d2d3cbaa7420324b938ea1f7a64325cfcaef0759
5
5
  SHA512:
6
- metadata.gz: 5dfc9d1e95e88f589fa68682e41c93b50f415c65a3a27a7d004b230af1055ad82b8f26f97a59d23ae8fce9eb2c9583cdd8956f46b571684bdd004d64e4977a3c
7
- data.tar.gz: 2222589039c72fc3153adc069b76c8de6037d93346d36c09ba314b6535faa833d32ae7aa5dd28faba27032127307a9bccca486576a2febfbf4ba40c18fe594a3
6
+ metadata.gz: b3f08b9ae3eb66e9ca3cf22e2daf4d3091c2ad1b010453b8b6f328151a1d67c0f0174016350a06757f43fc9f2d32b07d198e2967a38648857c52965c50aa3a4c
7
+ data.tar.gz: 2c5351508f495084d7b303216047452fd2cd8b13c017ca2b9fedccbe7e26c59bd3f5d955e1124f46f73de3da8c063d6e8044a1961bab1b6fc3ecde92e0531beb
@@ -9,10 +9,17 @@ module Contained
9
9
  class Deploy < Base
10
10
  def execute!
11
11
  stack = @config.fetch("stack")
12
+ registry = @config.fetch("registry", { "server" => "hub.docker.com" })
13
+ username = ENV["DOCKER_LOGIN"]
14
+ password = ENV["DOCKER_PASSWORD"]
12
15
 
13
16
  @stdout.puts("[deploy] stack=#{stack} environment=#{@environment}")
14
17
 
15
18
  on hosts, in: :sequence do
19
+ if username && password
20
+ execute(:docker, :login, registry.fetch("server", "hub.docker.com"), "-u", username, "-p", password)
21
+ end
22
+
16
23
  execute(<<~BASH)
17
24
  source ./.contained/#{stack}/.env
18
25
  docker stack deploy -c ./.contained/#{stack}/compose.yml #{stack} --with-registry-auth
@@ -7,6 +7,9 @@ module Contained
7
7
  class Setup < Base
8
8
  def execute!
9
9
  stack = @config.fetch("stack")
10
+ registry = @config.fetch("registry", { "server" => "hub.docker.com" })
11
+ username = ENV["DOCKER_LOGIN"]
12
+ password = ENV["DOCKER_PASSWORD"]
10
13
 
11
14
  deploy_compose_yml = File.open("./config/deploy/compose.yml")
12
15
  deploy_env = File.open("./config/deploy/.env.#{@environment}")
@@ -16,6 +19,10 @@ module Contained
16
19
  on hosts, in: :sequence do
17
20
  execute(:docker, :swarm, :init) unless capture(:docker, :info).include?("Swarm: active")
18
21
 
22
+ if username && password
23
+ execute(:docker, :login, registry.fetch("server", "hub.docker.com"), "-u", username, "-p", password)
24
+ end
25
+
19
26
  execute("mkdir -p ./.contained/#{stack}")
20
27
 
21
28
  upload!(deploy_compose_yml, "./.contained/#{stack}/compose.yml")
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Contained
4
- VERSION = "0.7.0"
4
+ VERSION = "0.8.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: contained
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Sylvestre