contained 0.7.0 → 0.9.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: 9cd0f486e60a10bab86075204281d68473e4cb4b68dad6511a8051b3bed42525
4
+ data.tar.gz: 915b6f46f9bc11a54a6b8af80f0029a7d38f21e83c6ceb2e0550bd582e66f14e
5
5
  SHA512:
6
- metadata.gz: 5dfc9d1e95e88f589fa68682e41c93b50f415c65a3a27a7d004b230af1055ad82b8f26f97a59d23ae8fce9eb2c9583cdd8956f46b571684bdd004d64e4977a3c
7
- data.tar.gz: 2222589039c72fc3153adc069b76c8de6037d93346d36c09ba314b6535faa833d32ae7aa5dd28faba27032127307a9bccca486576a2febfbf4ba40c18fe594a3
6
+ metadata.gz: 573eaf7a77cccb4cf341d4d957389402f805905200dd09dc45312f1dcd8217eba054961f7a29c9abdc6fc3cc58ac4cdaf9b1dce3d9af37a109813e5d10a1241c
7
+ data.tar.gz: fb9b6336368af6a4338325c19ed1a83eaa354822564f59b0c5ba3d4634a1d6615dd4d03d86b03d0c7fb9acab4afe1605aab840d702e7c3e0b546fe3d7418fc9c
@@ -9,10 +9,14 @@ module Contained
9
9
  class Deploy < Base
10
10
  def execute!
11
11
  stack = @config.fetch("stack")
12
+ username = ENV["DOCKER_LOGIN"]
13
+ password = ENV["DOCKER_PASSWORD"]
12
14
 
13
15
  @stdout.puts("[deploy] stack=#{stack} environment=#{@environment}")
14
16
 
15
17
  on hosts, in: :sequence do
18
+ execute(:docker, :login, "-u", username, "-p", password) if username && password
19
+
16
20
  execute(<<~BASH)
17
21
  source ./.contained/#{stack}/.env
18
22
  docker stack deploy -c ./.contained/#{stack}/compose.yml #{stack} --with-registry-auth
@@ -7,6 +7,8 @@ module Contained
7
7
  class Setup < Base
8
8
  def execute!
9
9
  stack = @config.fetch("stack")
10
+ username = ENV["DOCKER_LOGIN"]
11
+ password = ENV["DOCKER_PASSWORD"]
10
12
 
11
13
  deploy_compose_yml = File.open("./config/deploy/compose.yml")
12
14
  deploy_env = File.open("./config/deploy/.env.#{@environment}")
@@ -14,6 +16,8 @@ module Contained
14
16
  @stdout.puts("[setup] stack=#{stack} environment=#{@environment}")
15
17
 
16
18
  on hosts, in: :sequence do
19
+ execute(:docker, :login, "-u", username, "-p", password) if username && password
20
+
17
21
  execute(:docker, :swarm, :init) unless capture(:docker, :info).include?("Swarm: active")
18
22
 
19
23
  execute("mkdir -p ./.contained/#{stack}")
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Contained
4
- VERSION = "0.7.0"
4
+ VERSION = "0.9.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.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Sylvestre