kuber_kit 0.8.4 → 0.8.5
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 +3 -0
- data/lib/kuber_kit/actions/service_deployer.rb +3 -2
- data/lib/kuber_kit/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 05be3e3db2434654e95c10ae6ea27130db6e2256e421002eb23ee72ff6750a25
|
4
|
+
data.tar.gz: 7e195575c492b8a6a27f018d2cce9cd3beef73ef942973c352bac65c5492b52b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 57a790155728e1713f7a900e091d1ff324aca2f1de40fe31924b9b5811f0f638c4690a56941efd32ce829298e67f05783655e13572eea9b0d83e019eeaee691d
|
7
|
+
data.tar.gz: b77886dcfd5601630b781e0503e6e6bae0df897b7ee4e98b58443d7092e81b877dafa3d075f858f096287fb6a9bfaf36299b8f20db6d6ba2d34c4d0e6c5c5e93
|
data/CHANGELOG.md
CHANGED
@@ -32,6 +32,7 @@ class KuberKit::Actions::ServiceDeployer
|
|
32
32
|
disabled_services += skip_services if skip_services
|
33
33
|
default_services = current_configuration.default_services.map(&:to_s) - disabled_services
|
34
34
|
initial_services = current_configuration.initial_services.map(&:to_s) - disabled_services
|
35
|
+
initial_service_names = initial_services.map(&:to_sym)
|
35
36
|
|
36
37
|
service_names = service_list_resolver.resolve(
|
37
38
|
services: services || [],
|
@@ -53,12 +54,12 @@ class KuberKit::Actions::ServiceDeployer
|
|
53
54
|
return false
|
54
55
|
end
|
55
56
|
|
56
|
-
unless allow_deployment?(require_confirmation: require_confirmation, service_names: all_service_names)
|
57
|
+
unless allow_deployment?(require_confirmation: require_confirmation, service_names: (initial_service_names + all_service_names).uniq)
|
57
58
|
return false
|
58
59
|
end
|
59
60
|
|
60
61
|
# Compile images for all services and dependencies
|
61
|
-
images_names = get_image_names(service_names: all_service_names)
|
62
|
+
images_names = get_image_names(service_names: (initial_service_names + all_service_names).uniq)
|
62
63
|
unless skip_compile
|
63
64
|
compilation_result = compile_images(images_names)
|
64
65
|
|
data/lib/kuber_kit/version.rb
CHANGED