kubes_google 0.3.10 → 0.3.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 +3 -0
- data/lib/kubes_google/secrets/fetcher.rb +1 -1
- data/lib/kubes_google/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 21bf0c110c15fe7d695063eb17b329d63c83f258294650331d7455edef4fdf6d
|
|
4
|
+
data.tar.gz: 50bb786d0b75b33048e9d94e6f46a96d2b47e65c2576e5c3c3939a3958f04846
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d0b30cb44cdadac3c2c31bf9e445f6dcbcabc85bb708e0ece99d3add2fcf3931e762c21f3bf6f47b9047e611454622444752bc2c4231be6415d6b1bd56d05c76
|
|
7
|
+
data.tar.gz: 0a7efc8f7cdbbc585fc0511a982aaf8da8838b0923e728825accfe1cc03c7590d13b56f9202eb3c2e4c86bdbfe27ce34ce3ac6e67e2dd5c2e87fff6f6569c29a
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
This project *loosely tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
|
5
5
|
|
|
6
|
+
## [0.3.11] - 2022-08-24
|
|
7
|
+
- [#12](https://github.com/boltops-tools/kubes_google/pull/12) KUBES_MOCK_SECRET_QUIET env var support
|
|
8
|
+
|
|
6
9
|
## [0.3.10] - 2022-08-19
|
|
7
10
|
- [#11](https://github.com/boltops-tools/kubes_google/pull/11) Google service account fixes
|
|
8
11
|
- KUBES_MOCK_SECRET ability
|
|
@@ -11,7 +11,7 @@ class KubesGoogle::Secrets
|
|
|
11
11
|
def fetch(short_name)
|
|
12
12
|
return @@cache[short_name] if @@cache[short_name]
|
|
13
13
|
if ENV['KUBES_MOCK_SECRET']
|
|
14
|
-
logger.info "KUBES_MOCK_SECRET=1 is set. Mocking secret: #{short_name}"
|
|
14
|
+
logger.info "KUBES_MOCK_SECRET=1 is set. Mocking secret: #{short_name}" unless ENV['KUBES_MOCK_SECRET_QUIET']
|
|
15
15
|
@@cache[short_name] = "mock"
|
|
16
16
|
else
|
|
17
17
|
logger.debug "Fetching secret: #{short_name}"
|
data/lib/kubes_google/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kubes_google
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tung Nguyen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-08-
|
|
11
|
+
date: 2022-08-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|