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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 15dac677730506e10fbb09705224f68c82e625a389bfbbab92f0292d26599ebb
4
- data.tar.gz: '09d78c4155e4b625935b263969a21361093100b004da34741a671f579f79450f'
3
+ metadata.gz: 05be3e3db2434654e95c10ae6ea27130db6e2256e421002eb23ee72ff6750a25
4
+ data.tar.gz: 7e195575c492b8a6a27f018d2cce9cd3beef73ef942973c352bac65c5492b52b
5
5
  SHA512:
6
- metadata.gz: e82d1c7dfd78ecea8b00939ca04f75c189ac336f84f69b811613db6e272a821c66202cf882081344cd920153f00f99d5c74ebe2962b771619361380fed076a4b
7
- data.tar.gz: af22dfcb438f9862adcbd4165ddf608c0db0c4580d7ae5b3a0b810d83193ce6caeb28a40671d58d4f064876058ae4a8503350c47a7e5ccc9f3efe1bcd06fc4b8
6
+ metadata.gz: 57a790155728e1713f7a900e091d1ff324aca2f1de40fe31924b9b5811f0f638c4690a56941efd32ce829298e67f05783655e13572eea9b0d83e019eeaee691d
7
+ data.tar.gz: b77886dcfd5601630b781e0503e6e6bae0df897b7ee4e98b58443d7092e81b877dafa3d075f858f096287fb6a9bfaf36299b8f20db6d6ba2d34c4d0e6c5c5e93
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ **0.8.5**
2
+ - Properly show initial services in deployment confirmation
3
+
1
4
  **0.8.4**
2
5
  - Added initial services support, to deploy before all other servies
3
6
 
@@ -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
 
@@ -1,3 +1,3 @@
1
1
  module KuberKit
2
- VERSION = "0.8.4"
2
+ VERSION = "0.8.5"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kuber_kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.4
4
+ version: 0.8.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Iskander Khaziev