kuber_kit 0.1.8 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +4 -2
- data/README.md +16 -3
- data/TODO.md +5 -3
- data/bin/kit +0 -1
- data/example/configurations/review.rb +2 -1
- data/example/images/app_sources/Dockerfile +1 -1
- data/example/images/ruby_app/image.rb +4 -4
- data/example/infrastructure/build_servers.rb +8 -0
- data/example/services/env_file.rb +1 -0
- data/example/services/ruby_app.rb +2 -1
- data/kuber_kit.gemspec +1 -0
- data/lib/kuber_kit.rb +37 -19
- data/lib/kuber_kit/actions/configuration_loader.rb +9 -2
- data/lib/kuber_kit/actions/env_file_reader.rb +3 -0
- data/lib/kuber_kit/actions/image_compiler.rb +14 -10
- data/lib/kuber_kit/actions/kubectl_applier.rb +7 -3
- data/lib/kuber_kit/actions/kubectl_attacher.rb +26 -0
- data/lib/kuber_kit/actions/service_deployer.rb +31 -0
- data/lib/kuber_kit/actions/service_reader.rb +4 -0
- data/lib/kuber_kit/actions/template_reader.rb +3 -0
- data/lib/kuber_kit/cli.rb +54 -20
- data/lib/kuber_kit/configs.rb +24 -22
- data/lib/kuber_kit/container.rb +21 -13
- data/lib/kuber_kit/core/artifacts/artifact_store.rb +9 -28
- data/lib/kuber_kit/core/build_servers/abstract_build_server.rb +21 -0
- data/lib/kuber_kit/core/build_servers/build_server.rb +24 -0
- data/lib/kuber_kit/core/build_servers/build_server_store.rb +18 -0
- data/lib/kuber_kit/core/configuration.rb +10 -4
- data/lib/kuber_kit/core/configuration_definition.rb +18 -1
- data/lib/kuber_kit/core/configuration_factory.rb +11 -1
- data/lib/kuber_kit/core/configuration_store.rb +14 -24
- data/lib/kuber_kit/core/env_files/env_file_store.rb +8 -23
- data/lib/kuber_kit/core/image_store.rb +8 -18
- data/lib/kuber_kit/core/registries/registry_store.rb +8 -23
- data/lib/kuber_kit/core/service_store.rb +13 -23
- data/lib/kuber_kit/core/store.rb +48 -0
- data/lib/kuber_kit/core/templates/template_store.rb +9 -28
- data/lib/kuber_kit/image_compiler/build_server_pool.rb +31 -0
- data/lib/kuber_kit/image_compiler/build_server_pool_factory.rb +13 -0
- data/lib/kuber_kit/image_compiler/image_build_dir_creator.rb +13 -7
- data/lib/kuber_kit/image_compiler/image_dependency_resolver.rb +25 -5
- data/lib/kuber_kit/preprocessing/file_preprocessor.rb +5 -4
- data/lib/kuber_kit/service_deployer/strategies/kubernetes.rb +5 -3
- data/lib/kuber_kit/shell/abstract_shell.rb +4 -0
- data/lib/kuber_kit/shell/{bash_commands.rb → commands/bash_commands.rb} +1 -1
- data/lib/kuber_kit/shell/{docker_commands.rb → commands/docker_commands.rb} +1 -1
- data/lib/kuber_kit/shell/{git_commands.rb → commands/git_commands.rb} +1 -1
- data/lib/kuber_kit/shell/commands/kubectl_commands.rb +65 -0
- data/lib/kuber_kit/shell/commands/rsync_commands.rb +32 -0
- data/lib/kuber_kit/shell/local_shell.rb +24 -5
- data/lib/kuber_kit/shell/ssh_session.rb +62 -0
- data/lib/kuber_kit/shell/ssh_shell.rb +77 -0
- data/lib/kuber_kit/tools/file_presence_checker.rb +6 -2
- data/lib/kuber_kit/ui/interactive.rb +8 -0
- data/lib/kuber_kit/ui/simple.rb +6 -0
- data/lib/kuber_kit/version.rb +2 -2
- metadata +34 -12
- data/lib/kuber_kit/preprocessing/dir_preprocessor.rb +0 -19
- data/lib/kuber_kit/shell/kubectl_commands.rb +0 -42
- data/lib/kuber_kit/shell/rsync_commands.rb +0 -20
- data/lib/kuber_kit/tools/files_sync.rb +0 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d3acad6e0224702a4f70ae02d93c16bc766e1e36d75ee33cbc5d2fb15118d35e
|
4
|
+
data.tar.gz: 8903414dfacb859f883298b21ac2d30dd08e93597044e325b253c0f5cd5c8709
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e5c368de0b96bfd89f80004d1c4fa0a0a5355c6116768fd0b86d7eb0191719ba11b646b1e202f40c08276d06bfb50d423659cb49a488f9573788a51638273cdc
|
7
|
+
data.tar.gz: c0da8c721a80b02b41ee4c6430c175678f792271c3e9f10fba55784e7ea7f8013ffd09b989c043a723c234350340347176ab5c59541e3e1b9b98ebb60f6800dc
|
data/Gemfile.lock
CHANGED
@@ -1,10 +1,11 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
kuber_kit (0.
|
4
|
+
kuber_kit (0.2.3)
|
5
5
|
cli-ui
|
6
6
|
contracts-lite
|
7
7
|
dry-auto_inject
|
8
|
+
net-ssh
|
8
9
|
thor
|
9
10
|
|
10
11
|
GEM
|
@@ -25,10 +26,11 @@ GEM
|
|
25
26
|
dry-container (0.7.2)
|
26
27
|
concurrent-ruby (~> 1.0)
|
27
28
|
dry-configurable (~> 0.1, >= 0.1.3)
|
28
|
-
dry-core (0.4.
|
29
|
+
dry-core (0.4.10)
|
29
30
|
concurrent-ruby (~> 1.0)
|
30
31
|
dry-equalizer (0.3.0)
|
31
32
|
method_source (1.0.0)
|
33
|
+
net-ssh (6.1.0)
|
32
34
|
pry (0.13.1)
|
33
35
|
coderay (~> 1.1)
|
34
36
|
method_source (~> 1.0)
|
data/README.md
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
-
#
|
1
|
+
# KuberKit
|
2
|
+
|
3
|
+
[![Codeship Status for ArtStation/kuber_kit](https://app.codeship.com/projects/1286f0a6-3f90-4c1b-b426-721ed8a6571b/status?branch=master)](https://app.codeship.com/projects/417264)
|
4
|
+
|
5
|
+
Solution for building & deploying applications on Kubernetes, written in Ruby.
|
2
6
|
|
3
7
|
## Installation
|
4
8
|
|
@@ -8,12 +12,21 @@ Add this line to your application's Gemfile:
|
|
8
12
|
gem 'kuber_kit'
|
9
13
|
```
|
10
14
|
|
11
|
-
##
|
15
|
+
## Development
|
16
|
+
|
17
|
+
### Launch compilation
|
18
|
+
|
19
|
+
```
|
20
|
+
bundle exec bin/kit compile ruby_app,ruby_app2 --path=./example
|
21
|
+
```
|
22
|
+
|
23
|
+
### Launch deployment
|
12
24
|
|
13
25
|
```
|
14
|
-
bin/kit compile ruby_app,ruby_app2 --path=./example
|
26
|
+
bundle exec bin/kit compile -s ruby_app,ruby_app2 --path=./example
|
15
27
|
```
|
16
28
|
|
29
|
+
|
17
30
|
## License
|
18
31
|
|
19
32
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/TODO.md
CHANGED
@@ -1,6 +1,8 @@
|
|
1
|
-
-
|
1
|
+
- find a way to launch job on each run, e.g. for migrations
|
2
|
+
- allow setting default configuration for kuberkit using env variable
|
3
|
+
- implement interactive shell.exec!
|
4
|
+
- allow deploying only services enabled for specific configuration
|
2
5
|
- list services and require confirmation before deployment
|
3
|
-
- service factory should make sure that template exists
|
4
|
-
- add build servers support
|
5
6
|
- add build vars support (use images instead of containers)
|
7
|
+
- template should be able to set default attributes
|
6
8
|
- template should be able to depend on image?
|
data/bin/kit
CHANGED
@@ -3,13 +3,13 @@ KuberKit
|
|
3
3
|
.registry(:default)
|
4
4
|
.depends_on(:ruby, :app_sources)
|
5
5
|
.before_build do |context_helper, build_dir|
|
6
|
-
# copy file local artifact
|
6
|
+
# copy file: local artifact
|
7
7
|
source_path = context_helper.artifact_path(:kuber_kit_example_data, "test.txt")
|
8
8
|
target_path = File.join(build_dir, "test.txt")
|
9
|
-
context_helper.shell.
|
9
|
+
context_helper.shell.sync(source_path, target_path)
|
10
10
|
|
11
|
-
# copy file
|
11
|
+
# copy file: remote artifact
|
12
12
|
source_path = context_helper.artifact_path(:kuber_kit_repo, "README.md")
|
13
13
|
target_path = File.join(build_dir, "README.md")
|
14
|
-
context_helper.shell.
|
14
|
+
context_helper.shell.sync(source_path, target_path)
|
15
15
|
end
|
data/kuber_kit.gemspec
CHANGED
@@ -27,6 +27,7 @@ Gem::Specification.new do |spec|
|
|
27
27
|
spec.add_dependency "dry-auto_inject"
|
28
28
|
spec.add_dependency "thor"
|
29
29
|
spec.add_dependency "cli-ui"
|
30
|
+
spec.add_dependency "net-ssh"
|
30
31
|
|
31
32
|
spec.add_development_dependency "bundler", "~> 1.17"
|
32
33
|
spec.add_development_dependency "rake", "~> 10.0"
|
data/lib/kuber_kit.rb
CHANGED
@@ -31,18 +31,7 @@ module KuberKit
|
|
31
31
|
autoload :ConfigurationFactory, 'core/configuration_factory'
|
32
32
|
autoload :Configuration, 'core/configuration'
|
33
33
|
|
34
|
-
|
35
|
-
autoload :BaseHelper, 'core/context_helper/base_helper'
|
36
|
-
autoload :ImageHelper, 'core/context_helper/image_helper'
|
37
|
-
autoload :ServiceHelper, 'core/context_helper/service_helper'
|
38
|
-
autoload :ContextHelperFactory, 'core/context_helper/context_helper_factory'
|
39
|
-
end
|
40
|
-
|
41
|
-
module Registries
|
42
|
-
autoload :AbstractRegistry, 'core/registries/abstract_registry'
|
43
|
-
autoload :RegistryStore, 'core/registries/registry_store'
|
44
|
-
autoload :Registry, 'core/registries/registry'
|
45
|
-
end
|
34
|
+
autoload :Store, 'core/store'
|
46
35
|
|
47
36
|
module Artifacts
|
48
37
|
autoload :AbstractArtifact, 'core/artifacts/abstract_artifact'
|
@@ -51,12 +40,31 @@ module KuberKit
|
|
51
40
|
autoload :Local, 'core/artifacts/local'
|
52
41
|
end
|
53
42
|
|
43
|
+
module BuildServers
|
44
|
+
autoload :AbstractBuildServer, 'core/build_servers/abstract_build_server'
|
45
|
+
autoload :BuildServerStore, 'core/build_servers/build_server_store'
|
46
|
+
autoload :BuildServer, 'core/build_servers/build_server'
|
47
|
+
end
|
48
|
+
|
54
49
|
module EnvFiles
|
55
50
|
autoload :EnvFileStore, 'core/env_files/env_file_store'
|
56
51
|
autoload :AbstractEnvFile, 'core/env_files/abstract_env_file'
|
57
52
|
autoload :ArtifactFile, 'core/env_files/artifact_file'
|
58
53
|
end
|
59
54
|
|
55
|
+
module ContextHelper
|
56
|
+
autoload :BaseHelper, 'core/context_helper/base_helper'
|
57
|
+
autoload :ImageHelper, 'core/context_helper/image_helper'
|
58
|
+
autoload :ServiceHelper, 'core/context_helper/service_helper'
|
59
|
+
autoload :ContextHelperFactory, 'core/context_helper/context_helper_factory'
|
60
|
+
end
|
61
|
+
|
62
|
+
module Registries
|
63
|
+
autoload :AbstractRegistry, 'core/registries/abstract_registry'
|
64
|
+
autoload :RegistryStore, 'core/registries/registry_store'
|
65
|
+
autoload :Registry, 'core/registries/registry'
|
66
|
+
end
|
67
|
+
|
60
68
|
module Templates
|
61
69
|
autoload :TemplateStore, 'core/templates/template_store'
|
62
70
|
autoload :AbstractTemplate, 'core/templates/abstract_template'
|
@@ -67,22 +75,28 @@ module KuberKit
|
|
67
75
|
module Tools
|
68
76
|
autoload :FilePresenceChecker, 'tools/file_presence_checker'
|
69
77
|
autoload :LoggerFactory, 'tools/logger_factory'
|
70
|
-
autoload :FilesSync, 'tools/files_sync'
|
71
78
|
end
|
72
79
|
|
73
80
|
module Shell
|
74
81
|
autoload :AbstractShell, 'shell/abstract_shell'
|
75
82
|
autoload :LocalShell, 'shell/local_shell'
|
83
|
+
autoload :SshShell, 'shell/ssh_shell'
|
84
|
+
autoload :SshSession, 'shell/ssh_session'
|
76
85
|
autoload :CommandCounter, 'shell/command_counter'
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
86
|
+
|
87
|
+
module Commands
|
88
|
+
autoload :BashCommands, 'shell/commands/bash_commands'
|
89
|
+
autoload :DockerCommands, 'shell/commands/docker_commands'
|
90
|
+
autoload :GitCommands, 'shell/commands/git_commands'
|
91
|
+
autoload :RsyncCommands, 'shell/commands/rsync_commands'
|
92
|
+
autoload :KubectlCommands, 'shell/commands/kubectl_commands'
|
93
|
+
end
|
82
94
|
end
|
83
95
|
|
84
96
|
module ImageCompiler
|
85
97
|
autoload :ActionHandler, 'image_compiler/action_handler'
|
98
|
+
autoload :BuildServerPool, 'image_compiler/build_server_pool'
|
99
|
+
autoload :BuildServerPoolFactory, 'image_compiler/build_server_pool_factory'
|
86
100
|
autoload :Compiler, 'image_compiler/compiler'
|
87
101
|
autoload :ImageBuilder, 'image_compiler/image_builder'
|
88
102
|
autoload :ImageBuildDirCreator, 'image_compiler/image_build_dir_creator'
|
@@ -93,7 +107,6 @@ module KuberKit
|
|
93
107
|
module Preprocessing
|
94
108
|
autoload :TextPreprocessor, 'preprocessing/text_preprocessor'
|
95
109
|
autoload :FilePreprocessor, 'preprocessing/file_preprocessor'
|
96
|
-
autoload :DirPreprocessor, 'preprocessing/dir_preprocessor'
|
97
110
|
end
|
98
111
|
|
99
112
|
module ArtifactsSync
|
@@ -144,6 +157,7 @@ module KuberKit
|
|
144
157
|
autoload :ServiceDeployer, 'actions/service_deployer'
|
145
158
|
autoload :ConfigurationLoader, 'actions/configuration_loader'
|
146
159
|
autoload :KubectlApplier, 'actions/kubectl_applier'
|
160
|
+
autoload :KubectlAttacher, 'actions/kubectl_attacher'
|
147
161
|
end
|
148
162
|
|
149
163
|
module Extensions
|
@@ -212,6 +226,10 @@ module KuberKit
|
|
212
226
|
Container["core.template_store"].add(template)
|
213
227
|
end
|
214
228
|
|
229
|
+
def add_build_server(build_server)
|
230
|
+
Container["core.build_server_store"].add(build_server)
|
231
|
+
end
|
232
|
+
|
215
233
|
def build_helper(&proc)
|
216
234
|
KuberKit::Core::ContextHelper::BaseHelper.class_exec(&proc)
|
217
235
|
end
|
@@ -50,8 +50,11 @@ class KuberKit::Actions::ConfigurationLoader
|
|
50
50
|
files = service_store.load_definitions(services_path)
|
51
51
|
task.update_title("Loaded #{files.count} service definitions")
|
52
52
|
end
|
53
|
+
|
54
|
+
true
|
53
55
|
rescue KuberKit::Error => e
|
54
56
|
ui.print_error("Error", e.message)
|
57
|
+
false
|
55
58
|
end
|
56
59
|
|
57
60
|
def load_configurations(configurations_path, configuration_name)
|
@@ -62,13 +65,17 @@ class KuberKit::Actions::ConfigurationLoader
|
|
62
65
|
configuration_name ||= :_default_
|
63
66
|
end
|
64
67
|
|
68
|
+
all_configurations = configuration_store.all_definitions.values
|
65
69
|
if configuration_store.count == 1 && configuration_name.nil?
|
66
|
-
first_configurations =
|
70
|
+
first_configurations = all_configurations.first
|
67
71
|
configuration_name = first_configurations.configuration_name
|
68
72
|
end
|
69
73
|
|
70
74
|
if configuration_store.count > 1 && configuration_name.nil?
|
71
|
-
|
75
|
+
options = all_configurations.map(&:configuration_name).map(&:to_s)
|
76
|
+
ui.prompt("Please select configuration name (or set it using -C option)", options) do |selection|
|
77
|
+
configuration_name = selection
|
78
|
+
end
|
72
79
|
end
|
73
80
|
|
74
81
|
KuberKit.set_configuration_name(configuration_name)
|
@@ -11,7 +11,10 @@ class KuberKit::Actions::EnvFileReader
|
|
11
11
|
def call(env_file_name, options)
|
12
12
|
result = env_file_reader.call(local_shell, env_file_name)
|
13
13
|
ui.print_info(env_file_name.to_s, JSON.pretty_generate(result))
|
14
|
+
|
15
|
+
true
|
14
16
|
rescue KuberKit::Error => e
|
15
17
|
ui.print_error("Error", e.message)
|
18
|
+
false
|
16
19
|
end
|
17
20
|
end
|
@@ -1,6 +1,7 @@
|
|
1
1
|
class KuberKit::Actions::ImageCompiler
|
2
2
|
include KuberKit::Import[
|
3
3
|
"image_compiler.image_dependency_resolver",
|
4
|
+
"image_compiler.build_server_pool_factory",
|
4
5
|
"shell.local_shell",
|
5
6
|
"tools.logger",
|
6
7
|
"ui",
|
@@ -10,29 +11,32 @@ class KuberKit::Actions::ImageCompiler
|
|
10
11
|
Contract ArrayOf[Symbol], Hash => Any
|
11
12
|
def call(image_names, options)
|
12
13
|
build_id = generate_build_id
|
14
|
+
build_server_pool = build_server_pool_factory.create()
|
13
15
|
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
while (dependencies - resolved_dependencies).any?
|
18
|
-
compile_simultaneously(dependencies, build_id)
|
19
|
-
resolved_dependencies += dependencies
|
20
|
-
dependencies = image_dependency_resolver.get_next(image_names, resolved: resolved_dependencies)
|
16
|
+
image_dependency_resolver.each_with_deps(image_names) do |dep_image_names|
|
17
|
+
result = compile_simultaneously(dep_image_names, build_id, build_server_pool)
|
18
|
+
abort unless result
|
21
19
|
end
|
22
20
|
|
23
|
-
|
21
|
+
build_server_pool.disconnect_all
|
22
|
+
|
23
|
+
true
|
24
24
|
rescue KuberKit::Error => e
|
25
25
|
ui.print_error("Error", e.message)
|
26
|
+
|
27
|
+
false
|
26
28
|
end
|
27
29
|
|
28
30
|
private
|
29
|
-
def compile_simultaneously(image_names, build_id)
|
31
|
+
def compile_simultaneously(image_names, build_id, build_server_pool)
|
30
32
|
task_group = ui.create_task_group
|
31
33
|
image_names.map do |image_name|
|
32
34
|
|
33
35
|
logger.info("Started compiling: #{image_name.to_s.green}")
|
34
36
|
task_group.add("Compiling #{image_name.to_s.yellow}") do |task|
|
35
|
-
|
37
|
+
shell = build_server_pool.get_shell
|
38
|
+
|
39
|
+
image_compiler.call(shell, image_name, build_id)
|
36
40
|
|
37
41
|
task.update_title("Compiled #{image_name.to_s.green}")
|
38
42
|
logger.info("Finished compiling: #{image_name.to_s.green}")
|
@@ -7,13 +7,17 @@ class KuberKit::Actions::KubectlApplier
|
|
7
7
|
|
8
8
|
Contract String, Hash => Any
|
9
9
|
def call(file_path, options)
|
10
|
-
kubeconfig_path
|
10
|
+
kubeconfig_path = KuberKit.current_configuration.kubeconfig_path
|
11
|
+
deploy_namespace = KuberKit.current_configuration.deploy_namespace
|
11
12
|
ui.create_task("Applying file: #{file_path}") do |task|
|
12
|
-
kubectl_commands.apply_file(local_shell, file_path, kubeconfig_path: kubeconfig_path)
|
13
|
+
kubectl_commands.apply_file(local_shell, file_path, kubeconfig_path: kubeconfig_path, namespace: deploy_namespace)
|
13
14
|
task.update_title("Applied file: #{file_path}")
|
14
15
|
end
|
15
|
-
|
16
|
+
|
17
|
+
true
|
16
18
|
rescue KuberKit::Error => e
|
17
19
|
ui.print_error("Error", e.message)
|
20
|
+
|
21
|
+
false
|
18
22
|
end
|
19
23
|
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
class KuberKit::Actions::KubectlAttacher
|
2
|
+
include KuberKit::Import[
|
3
|
+
"shell.kubectl_commands",
|
4
|
+
"shell.local_shell",
|
5
|
+
"ui"
|
6
|
+
]
|
7
|
+
|
8
|
+
Contract String, Hash => Any
|
9
|
+
def call(pod_name, options)
|
10
|
+
kubeconfig_path = KuberKit.current_configuration.kubeconfig_path
|
11
|
+
deploy_namespace = KuberKit.current_configuration.deploy_namespace
|
12
|
+
|
13
|
+
kubectl_commands.exec(
|
14
|
+
local_shell, pod_name, "bash", args: "-it",
|
15
|
+
kubeconfig_path: kubeconfig_path,
|
16
|
+
interactive: true,
|
17
|
+
namespace: deploy_namespace
|
18
|
+
)
|
19
|
+
|
20
|
+
true
|
21
|
+
rescue KuberKit::Error => e
|
22
|
+
ui.print_error("Error", e.message)
|
23
|
+
|
24
|
+
false
|
25
|
+
end
|
26
|
+
end
|
@@ -14,6 +14,10 @@ class KuberKit::Actions::ServiceDeployer
|
|
14
14
|
tags: Maybe[ArrayOf[String]],
|
15
15
|
] => Any
|
16
16
|
def call(services:, tags:)
|
17
|
+
if services.empty? && tags.empty?
|
18
|
+
services, tags = show_tags_selection
|
19
|
+
end
|
20
|
+
|
17
21
|
service_names = service_list_resolver.resolve(
|
18
22
|
services: services || [],
|
19
23
|
tags: tags || []
|
@@ -31,8 +35,12 @@ class KuberKit::Actions::ServiceDeployer
|
|
31
35
|
|
32
36
|
compile_images(images_names)
|
33
37
|
deploy_services(service_names)
|
38
|
+
|
39
|
+
true
|
34
40
|
rescue KuberKit::Error => e
|
35
41
|
ui.print_error("Error", e.message)
|
42
|
+
|
43
|
+
false
|
36
44
|
end
|
37
45
|
|
38
46
|
def deploy_services(service_names)
|
@@ -55,4 +63,27 @@ class KuberKit::Actions::ServiceDeployer
|
|
55
63
|
def compile_images(images_names)
|
56
64
|
image_compiler.call(images_names, {}) if images_names.any?
|
57
65
|
end
|
66
|
+
|
67
|
+
def show_tags_selection()
|
68
|
+
specific_service_option = "deploy specific service"
|
69
|
+
|
70
|
+
tags = [specific_service_option]
|
71
|
+
tags += service_store.all_definitions.values.map(&:to_service_attrs).map(&:tags).flatten.uniq.map(&:to_s)
|
72
|
+
|
73
|
+
ui.prompt("Please select which tag to deploy", tags) do |selected_tag|
|
74
|
+
if selected_tag == specific_service_option
|
75
|
+
show_service_selection
|
76
|
+
else
|
77
|
+
return [[], [selected_tag]]
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
def show_service_selection()
|
83
|
+
services = service_store.all_definitions.values.map(&:service_name).uniq.map(&:to_s)
|
84
|
+
|
85
|
+
ui.prompt("Please select which service to deploy", services) do |selected_service|
|
86
|
+
return [[selected_service], []]
|
87
|
+
end
|
88
|
+
end
|
58
89
|
end
|