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 +4 -4
- data/lib/dapp/kube/helm/release.rb +0 -10
- data/lib/dapp/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1cacb4382e2b1b2860063b0a22a6a47b65e3e7df
|
4
|
+
data.tar.gz: 19ca7a4aa6b21f473599ed870dad6e2dcb2c0cb4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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