dapp 0.13.15 → 0.13.16

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
  SHA1:
3
- metadata.gz: 5fa0a97a6909cfc4f97cac432fbbadd642182d0b
4
- data.tar.gz: a95b621146463015efd477df2548108f8456fbb2
3
+ metadata.gz: 1cacb4382e2b1b2860063b0a22a6a47b65e3e7df
4
+ data.tar.gz: 19ca7a4aa6b21f473599ed870dad6e2dcb2c0cb4
5
5
  SHA512:
6
- metadata.gz: 71afc61fbe8e6734d32334202833f7895eb78c84183e2ab71f528ab3ab578a535f2616d8f2461fb16209e3527057acb6a228d0852804e65c3f6bbd5ebcf1d0c2
7
- data.tar.gz: 7ad67260407c8120dd6112611c2224079beb0ca4a91f8fe96028f63d8edcaf880df07f3d5964dda7de6b389af8352ed9c60b54eff55bf676d2b388c5cdb4205e
6
+ metadata.gz: 040edabd92b748b15d56a6b8bbcd71206b3742703e4a9f671d46bd552fbca15b611760e82cf131011e0b8eb21397931b37dabff3cd3b08a5d41621faf4468f01
7
+ data.tar.gz: 6c40e5e04156f2df6098a5a5e5f624b74c6330b331a9ca083047568b0b99e32a5140bdefd075af26e4601a55ac83f98d123aed1567ef64dd3f35c391102b620a
@@ -81,7 +81,6 @@ module Dapp
81
81
  end
82
82
 
83
83
  if evaluation_output.lines.map(&:strip).grep(/ERROR: Job failed: exit status 1/).any?
84
- warn evaluation_output
85
84
  raise Error::Base, code: :helm_failed
86
85
  end
87
86
 
@@ -90,9 +89,6 @@ module Dapp
90
89
  hook_start_index = ind + 1
91
90
  else
92
91
  warn "[WARN][DEBUG INFO] Cannot find HOOKS section in helm dry-run output:"
93
- evaluation_output.lines.each do |line|
94
- warn "[WARN][DEBUG INFO] #{line.strip}"
95
- end
96
92
  end
97
93
 
98
94
  manifest_start_index = nil
@@ -100,16 +96,10 @@ module Dapp
100
96
  manifest_start_index = ind + 1
101
97
  else
102
98
  warn "[WARN][DEBUG INFO] Cannot find MANIFEST section in helm dry-run output:"
103
- evaluation_output.lines.each do |line|
104
- warn "[WARN][DEBUG INFO] #{line.strip}"
105
- end
106
99
  end
107
100
 
108
101
  unless manifest_end_index = evaluation_output.lines.index("Release \"#{name}\" has been upgraded. Happy Helming!\n")
109
102
  warn "[WARN][DEBUG INFO] Cannot find end of MANIFEST section in helm dry-run output:"
110
- evaluation_output.lines.each do |line|
111
- warn "[WARN][DEBUG INFO] #{line.strip}"
112
- end
113
103
  end
114
104
 
115
105
  generator.call(evaluation_output.lines[hook_start_index..manifest_start_index-2].join) if hook_start_index and manifest_start_index
data/lib/dapp/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Dapp
2
- VERSION = '0.13.15'.freeze
2
+ VERSION = '0.13.16'.freeze
3
3
  BUILD_CACHE_VERSION = 15
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dapp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.15
4
+ version: 0.13.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmitry Stolyarov