kubernetes-deploy 0.12.9 → 0.12.10

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: 6d865102d9b707cc6ef67eba2609c3eaaa94903a
4
- data.tar.gz: 6e6f5ec188571c42c5dfd2672f62ccf922eabfb8
3
+ metadata.gz: 7c8a390f4ff6a797031463d97a0d29216fc749a1
4
+ data.tar.gz: 833912839843e62d9c8a34ecb74a10c8915b4aa1
5
5
  SHA512:
6
- metadata.gz: e250b6c3f66bd986fa7f2a11cd5779aa96ff05ce4ddb386d21521aa3e14748135894cb6be004e71205fcc28017c5690d452ba72c6b9d4a0cea7c601104a07bb4
7
- data.tar.gz: e0797decff33ef2c7c4d311d85a5b4a78dd5fcb53ae10c9a76ead741b6a89e1b12fb4db1304fb1ad781255cb63ac92d9c9356d563da2b3daad9f18ec89d726ea
6
+ metadata.gz: 33ec779ba0300b9d0b080bd2da276e0e618eb0d4dbd398bfcaa9c27d380432eb4b947b550fa1e5bc8dde0d2785d477b934516f7e8232cd8a24b683d8ba57dd3d
7
+ data.tar.gz: 60b591e4120d2d0c408f41114e733f6c0cc5e0e3cd919798a52969ad4ecc3ea6d2dc4a6142862a38a117d06240611d73b75a0c12017af5f08c0454f41b17f9f9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
- ### 0.12.9
1
+ ### 0.12.10
2
+ *Enhancement*
3
+ - Log reason if deploy times out due to `progressDeadlineSeconds` being exceeded
2
4
 
5
+ ### 0.12.9
3
6
  *Bug Fixes*
4
7
  - Retry discovering namespace and kubernetes context
5
8
  - Expose real error during namespace discovery
@@ -54,7 +54,9 @@ module KubernetesDeploy
54
54
  def timeout_message
55
55
  progress_seconds = @definition['spec']['progressDeadlineSeconds']
56
56
  if progress_seconds
57
- "Deploy timed out due to progressDeadlineSeconds of #{progress_seconds} seconds. #{@latest_rs&.timeout_message}"
57
+ "Deploy timed out due to progressDeadlineSeconds of #{progress_seconds} seconds, "\
58
+ " reason: #{@progress['reason']}\n"\
59
+ "#{@latest_rs&.timeout_message}"
58
60
  else
59
61
  @latest_rs&.timeout_message
60
62
  end
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module KubernetesDeploy
3
- VERSION = "0.12.9"
3
+ VERSION = "0.12.10"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kubernetes-deploy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.9
4
+ version: 0.12.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Katrina Verey
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2017-10-27 00:00:00.000000000 Z
12
+ date: 2017-10-30 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport