kubes 0.8.5 → 0.8.6
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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f84754c7f4ac3bb6b4cf9265e9a1996790e16f1a0d559c84a2b12bfd389a08c8
|
4
|
+
data.tar.gz: 952b720a88afa528925d0fe4f910b211d7891d930903ae36e8e7e35b69eec003
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c706ad8181772d2c7dbcee9de65d96548068de2840641786c58bc7fdfa1bbe6b1173dc8ec787ad42ef60d02bcce5f6ebc3f56d60549087c72d6f17a9a8cdbb34
|
7
|
+
data.tar.gz: 4282f36a11382932f19f355c1e9c9f286c191f9486f37de9328719f8ae8b3636f2266751f65c896fd31018396ddadc00803b6b064d83836c9023c751539575a3
|
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.8.6] - 2022-02-16
|
7
|
+
- [#62](https://github.com/boltops-tools/kubes/pull/62) config map files: add Kubes.app txt layer
|
8
|
+
|
6
9
|
## [0.8.5] - 2022-02-16
|
7
10
|
- [#61](https://github.com/boltops-tools/kubes/pull/61) add erb support for config_map_files and generic_secret_data helpers
|
8
11
|
|
@@ -58,6 +58,7 @@ Layering for Config Map Files and also supports app-scoped layers.
|
|
58
58
|
Name | Example
|
59
59
|
--- | ---
|
60
60
|
configmap root | .kubes/resources/shared/config_map/{base,dev}.txt
|
61
|
-
configmap app
|
61
|
+
configmap app file | .kubes/resources/shared/config_map/app1.txt
|
62
|
+
configmap app folder | .kubes/resources/shared/config_map/app1/{base,dev}.txt
|
62
63
|
|
63
64
|
So if `KUBES_APP=app1`, then the app-scoped layer is also used. This handles the [Central Deployer Pattern]({% link _docs/patterns/central-deployer.md %}).
|
data/lib/kubes/version.rb
CHANGED