kubernetes-deploy 0.12.10 → 0.12.11

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: 7c8a390f4ff6a797031463d97a0d29216fc749a1
4
- data.tar.gz: 833912839843e62d9c8a34ecb74a10c8915b4aa1
3
+ metadata.gz: aa5be0538d73c03f9c281407bdd3cf586eb4cde9
4
+ data.tar.gz: 350c47e0cc23c058f8bf25561bd4499641f727a9
5
5
  SHA512:
6
- metadata.gz: 33ec779ba0300b9d0b080bd2da276e0e618eb0d4dbd398bfcaa9c27d380432eb4b947b550fa1e5bc8dde0d2785d477b934516f7e8232cd8a24b683d8ba57dd3d
7
- data.tar.gz: 60b591e4120d2d0c408f41114e733f6c0cc5e0e3cd919798a52969ad4ecc3ea6d2dc4a6142862a38a117d06240611d73b75a0c12017af5f08c0454f41b17f9f9
6
+ metadata.gz: 3b67e883b22032d548e08df5f4c81a7f8b10173e67f96075bfe23019c7475583da8584c31e8e7ef1d1e7931974d31875b922ea254f8ea81635d504085dbaf2d8
7
+ data.tar.gz: 8ae04db87d62fc8ac31d401005583867a11220162e03ac61defc4afc534b79b69a00e0f2293fc6d462745b187b609145dc65e9da98a3ea5d6fe5e0f63db38648
@@ -1,3 +1,7 @@
1
+ ### 0.12.11
2
+ *Bug Fixes*
3
+ - Stop appending newlines to the base64-encoded values of secrets created from ejson. These extra newlines were preventing the ejson->k8s secret feature from working with v1.8 (https://github.com/Shopify/kubernetes-deploy/pull/196).
4
+
1
5
  ### 0.12.10
2
6
  *Enhancement*
3
7
  - Log reason if deploy times out due to `progressDeadlineSeconds` being exceeded
@@ -128,7 +128,7 @@ module KubernetesDeploy
128
128
  # Leading underscores in ejson keys are used to skip encryption of the associated value
129
129
  # To support this ejson feature, we need to exclude these leading underscores from the secret's keys
130
130
  secret_key = key.sub(/\A_/, '')
131
- encoded[secret_key] = Base64.encode64(value)
131
+ encoded[secret_key] = Base64.strict_encode64(value)
132
132
  end
133
133
 
134
134
  secret = {
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module KubernetesDeploy
3
- VERSION = "0.12.10"
3
+ VERSION = "0.12.11"
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.10
4
+ version: 0.12.11
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-30 00:00:00.000000000 Z
12
+ date: 2017-10-31 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport