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: 7d4f55863bc9b85ce81ef58001438359486ff5d04f8659cdb78a9129495e44f5
4
- data.tar.gz: 47028f4b0ea54bdde4cbfc0dce71ace1c7a8a1ffdf895c745a595318120da9cd
3
+ metadata.gz: f84754c7f4ac3bb6b4cf9265e9a1996790e16f1a0d559c84a2b12bfd389a08c8
4
+ data.tar.gz: 952b720a88afa528925d0fe4f910b211d7891d930903ae36e8e7e35b69eec003
5
5
  SHA512:
6
- metadata.gz: a2b7d7e1d8f50a1c5a2900f2a8114219f79ad1e11b942cf4bc57970b4e44875bc7fe4389c99331396c7173c155fab75822e57044012f6446d4ae14f719177615
7
- data.tar.gz: 4785cb4de213f738fa667f865c36b29636f1919e1dc46093c2d88e3cb8cf2c2472f77f8812279383419e3274da7186897519ccbc4a3107cccbcc67f53a294e26
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-scoped | .kubes/resources/shared/config_map/app1/{base,dev}.txt
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 %}).
@@ -10,6 +10,7 @@ module Kubes::Compiler::Shared::Helpers
10
10
  ]
11
11
  if Kubes.app
12
12
  layers += [
13
+ [shared_config_map, "#{Kubes.app}.txt"],
13
14
  [shared_config_map, Kubes.app, "base.txt"],
14
15
  [shared_config_map, Kubes.app, "#{Kubes.env}.txt"],
15
16
  ]
data/lib/kubes/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Kubes
2
- VERSION = "0.8.5"
2
+ VERSION = "0.8.6"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kubes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.5
4
+ version: 0.8.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen