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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/kubernetes-deploy/ejson_secret_provisioner.rb +1 -1
- data/lib/kubernetes-deploy/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aa5be0538d73c03f9c281407bdd3cf586eb4cde9
|
4
|
+
data.tar.gz: 350c47e0cc23c058f8bf25561bd4499641f727a9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b67e883b22032d548e08df5f4c81a7f8b10173e67f96075bfe23019c7475583da8584c31e8e7ef1d1e7931974d31875b922ea254f8ea81635d504085dbaf2d8
|
7
|
+
data.tar.gz: 8ae04db87d62fc8ac31d401005583867a11220162e03ac61defc4afc534b79b69a00e0f2293fc6d462745b187b609145dc65e9da98a3ea5d6fe5e0f63db38648
|
data/CHANGELOG.md
CHANGED
@@ -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.
|
131
|
+
encoded[secret_key] = Base64.strict_encode64(value)
|
132
132
|
end
|
133
133
|
|
134
134
|
secret = {
|
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.
|
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-
|
12
|
+
date: 2017-10-31 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|