kubes 0.8.0 → 0.8.1
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/docs/_docs/patterns/central-deployer.md +2 -0
- data/lib/kubes/command.rb +1 -1
- data/lib/kubes/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 484309e2efc4a2e2aa6b1491320b896b013bd1d963b795e15efe08a0f550337b
|
|
4
|
+
data.tar.gz: cbfab84cc9adca44c14ad5ed3ee1d92417a0a5615981bcaba6a81219a13c6938
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6e0d546a1ef39c9da45dca25883e2ea903f205abd49ca982813e13ffb9e4147d7af450ff5c82812e275c1a758d673df71ed3992858eb3da0a24b7bec4918d466
|
|
7
|
+
data.tar.gz: 72ffc9257d4924485968d7006b87f08edb66d02b4b8f358992651a9abda6ce94ffe22a57f6fdc40d84f1c4a43e1cbdf04b326fc9d1221a11a04af56d2be0e527
|
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.1] - 2022-02-06
|
|
7
|
+
- allow --version command to run outside project
|
|
8
|
+
|
|
6
9
|
## [0.8.0] - 2022-02-06
|
|
7
10
|
- [#58](https://github.com/boltops-tools/kubes/pull/58) standalone install docs
|
|
8
11
|
- [#59](https://github.com/boltops-tools/kubes/pull/59) central deployer support
|
|
@@ -31,6 +31,8 @@ Then to deploy different app level settings.
|
|
|
31
31
|
|
|
32
32
|
{% include config/app-overrides-cheatsheet.md %}
|
|
33
33
|
|
|
34
|
+
Also check out: [App Overrides Docs]({% link _docs/config/app-overrides.md %}).
|
|
35
|
+
|
|
34
36
|
The central deployer approach is removes duplication of the kubes config files between projects. Leveraging app-level overrides gives provides a great degree of control.
|
|
35
37
|
|
|
36
38
|
If the settings start to diverge too much, then it probably makes sense to use separate .kubes files in that app specific repo.
|
data/lib/kubes/command.rb
CHANGED
|
@@ -58,7 +58,7 @@ module Kubes
|
|
|
58
58
|
|
|
59
59
|
def check_project!(command_name)
|
|
60
60
|
return if command_name.nil?
|
|
61
|
-
return if %w[-h -v completion completion_script help init new version].include?(command_name)
|
|
61
|
+
return if %w[-h -v --version completion completion_script help init new version].include?(command_name)
|
|
62
62
|
Kubes.check_project!
|
|
63
63
|
end
|
|
64
64
|
|
data/lib/kubes/version.rb
CHANGED