kuber_kit 0.8.8 → 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 +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/kuber_kit/actions/shell_launcher.rb +18 -0
- data/lib/kuber_kit/cli.rb +11 -0
- data/lib/kuber_kit/configs.rb +3 -2
- data/lib/kuber_kit/container.rb +12 -12
- data/lib/kuber_kit/core/configuration.rb +7 -4
- data/lib/kuber_kit/core/configuration_definition.rb +10 -3
- data/lib/kuber_kit/core/configuration_factory.rb +2 -1
- data/lib/kuber_kit/core/service.rb +1 -1
- data/lib/kuber_kit/defaults.rb +32 -10
- data/lib/kuber_kit/service_deployer/deployer.rb +0 -19
- data/lib/kuber_kit/shell/abstract_shell.rb +4 -0
- data/lib/kuber_kit/shell/commands/kubectl_commands.rb +6 -0
- data/lib/kuber_kit/shell/local_shell.rb +15 -0
- data/lib/kuber_kit/shell/ssh_shell.rb +4 -0
- data/lib/kuber_kit/shell_launcher/action_handler.rb +12 -0
- data/lib/kuber_kit/shell_launcher/launcher.rb +31 -0
- data/lib/kuber_kit/shell_launcher/strategies/abstract.rb +5 -0
- data/lib/kuber_kit/shell_launcher/strategies/kubernetes.rb +22 -0
- data/lib/kuber_kit/version.rb +1 -1
- data/lib/kuber_kit.rb +11 -0
- data/~/.kuber_kit/deploy.log +1765 -0
- data/~/.kuber_kit/env_files/env_files-test_env +2 -0
- data/~/.kuber_kit/services/auth_app.yml +7 -0
- metadata +10 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kuber_kit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Iskander Khaziev
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-05-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: contracts
|
@@ -247,6 +247,7 @@ files:
|
|
247
247
|
- lib/kuber_kit/actions/service_checker.rb
|
248
248
|
- lib/kuber_kit/actions/service_deployer.rb
|
249
249
|
- lib/kuber_kit/actions/service_reader.rb
|
250
|
+
- lib/kuber_kit/actions/shell_launcher.rb
|
250
251
|
- lib/kuber_kit/actions/template_reader.rb
|
251
252
|
- lib/kuber_kit/artifacts_sync/abstract_artifact_resolver.rb
|
252
253
|
- lib/kuber_kit/artifacts_sync/artifact_updater.rb
|
@@ -344,6 +345,10 @@ files:
|
|
344
345
|
- lib/kuber_kit/shell/local_shell.rb
|
345
346
|
- lib/kuber_kit/shell/ssh_session.rb
|
346
347
|
- lib/kuber_kit/shell/ssh_shell.rb
|
348
|
+
- lib/kuber_kit/shell_launcher/action_handler.rb
|
349
|
+
- lib/kuber_kit/shell_launcher/launcher.rb
|
350
|
+
- lib/kuber_kit/shell_launcher/strategies/abstract.rb
|
351
|
+
- lib/kuber_kit/shell_launcher/strategies/kubernetes.rb
|
347
352
|
- lib/kuber_kit/template_reader/action_handler.rb
|
348
353
|
- lib/kuber_kit/template_reader/reader.rb
|
349
354
|
- lib/kuber_kit/template_reader/strategies/abstract.rb
|
@@ -359,6 +364,9 @@ files:
|
|
359
364
|
- lib/kuber_kit/ui/interactive.rb
|
360
365
|
- lib/kuber_kit/ui/simple.rb
|
361
366
|
- lib/kuber_kit/version.rb
|
367
|
+
- "~/.kuber_kit/deploy.log"
|
368
|
+
- "~/.kuber_kit/env_files/env_files-test_env"
|
369
|
+
- "~/.kuber_kit/services/auth_app.yml"
|
362
370
|
homepage: https://github.com/ArtStation/kuber_kit
|
363
371
|
licenses:
|
364
372
|
- MIT
|