shiplane_deployers_capistrano_docker 0.1.15 → 0.2.3
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 57e132bde93db32d4d3b0d9a7d6d27f2aae61f9759213cbf0cc05362b7fb288d
|
|
4
|
+
data.tar.gz: 1957683e535ec8f7ce70279a2aa3a994aa25ec93d3974d2939ee13aa34af7fa7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f5bfa69978ed86c8e2ad242d659fa736ee25184ba90342c9b8a75f5b4bc6164694a500b05ee1aa0249100cd0bf0819c3263e023e9e29ab8db72ec0f2c10298d6
|
|
7
|
+
data.tar.gz: 706995e5b90d5e3f4a0fa87d0785597fc7c82aa33d9226bc65e01d1284230da31dbd8e95b9f3265b18e2e41194f1481636412979d481877d0524d0e1e39b47d0
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
load File.expand_path('../tasks/
|
|
1
|
+
load File.expand_path('../tasks/docker_repo.rake', __FILE__)
|
|
2
2
|
load File.expand_path('../tasks/deployer.rake', __FILE__)
|
|
@@ -1,18 +1,28 @@
|
|
|
1
1
|
namespace :shiplane do
|
|
2
|
-
task :
|
|
2
|
+
task :login_to_container_service do
|
|
3
3
|
fetch(:shiplane_container_configurations).each do |name, config|
|
|
4
4
|
roles = roles(config.fetch(:capistrano_role, :all)).map{|role| Shiplane::Host.new(role, env) }
|
|
5
5
|
roles.each do |role|
|
|
6
6
|
on role.capistrano_role do
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
command = [
|
|
8
|
+
'echo',
|
|
9
|
+
"\"#{fetch(:shiplane_docker_registry_token)}\"",
|
|
10
|
+
'|',
|
|
11
|
+
config.docker_command(role),
|
|
12
|
+
'login',
|
|
13
|
+
fetch(:shiplane_docker_registry_url, nil),
|
|
14
|
+
'--username',
|
|
15
|
+
fetch(:shiplane_docker_registry_username),
|
|
16
|
+
'--password-stdin',
|
|
17
|
+
].compact.join(' ')
|
|
18
|
+
|
|
19
|
+
execute command
|
|
10
20
|
end
|
|
11
21
|
end
|
|
12
22
|
end
|
|
13
23
|
end
|
|
14
24
|
|
|
15
|
-
task download_container: [:
|
|
25
|
+
task download_container: [:login_to_container_service] do
|
|
16
26
|
fetch(:shiplane_container_configurations).each do |name, config|
|
|
17
27
|
roles = roles(config.fetch(:capistrano_role, :all)).map{|role| Shiplane::Host.new(role, env) }
|
|
18
28
|
roles.each do |role|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: shiplane_deployers_capistrano_docker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- John Epperson
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-05-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|
|
@@ -70,6 +70,26 @@ dependencies:
|
|
|
70
70
|
- - "~>"
|
|
71
71
|
- !ruby/object:Gem::Version
|
|
72
72
|
version: 1.0.0
|
|
73
|
+
- !ruby/object:Gem::Dependency
|
|
74
|
+
name: gem-release
|
|
75
|
+
requirement: !ruby/object:Gem::Requirement
|
|
76
|
+
requirements:
|
|
77
|
+
- - ">="
|
|
78
|
+
- !ruby/object:Gem::Version
|
|
79
|
+
version: 2.0.4
|
|
80
|
+
- - "~>"
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: 2.2.1
|
|
83
|
+
type: :development
|
|
84
|
+
prerelease: false
|
|
85
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - ">="
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: 2.0.4
|
|
90
|
+
- - "~>"
|
|
91
|
+
- !ruby/object:Gem::Version
|
|
92
|
+
version: 2.2.1
|
|
73
93
|
description: Converts docker-compose.yml files into images that can be uploaded to
|
|
74
94
|
any docker image repository.
|
|
75
95
|
email:
|
|
@@ -82,13 +102,13 @@ files:
|
|
|
82
102
|
- lib/capistrano/shiplane_deployers_capistrano_docker.rb
|
|
83
103
|
- lib/capistrano/shiplane_deployers_capistrano_docker/version.rb
|
|
84
104
|
- lib/capistrano/tasks/deployer.rake
|
|
85
|
-
- lib/capistrano/tasks/
|
|
105
|
+
- lib/capistrano/tasks/docker_repo.rake
|
|
86
106
|
- lib/shiplane/deployers/capistrano_docker/version.rb
|
|
87
107
|
homepage: https://github.com/kirillian/shiplane
|
|
88
108
|
licenses:
|
|
89
109
|
- MIT
|
|
90
110
|
metadata: {}
|
|
91
|
-
post_install_message:
|
|
111
|
+
post_install_message:
|
|
92
112
|
rdoc_options: []
|
|
93
113
|
require_paths:
|
|
94
114
|
- lib
|
|
@@ -103,9 +123,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
103
123
|
- !ruby/object:Gem::Version
|
|
104
124
|
version: '0'
|
|
105
125
|
requirements: []
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
signing_key:
|
|
126
|
+
rubygems_version: 3.0.3
|
|
127
|
+
signing_key:
|
|
109
128
|
specification_version: 4
|
|
110
129
|
summary: A toolbox for converting developer docker-compose files into production-ready
|
|
111
130
|
images.
|