kubes 0.7.2 → 0.7.3
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/config/reference.md +1 -1
- data/lib/kubes.rb +1 -0
- data/lib/kubes/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: bea59506b3804479bea921daf27a38add7c00b82e75b936f2c6b60adaa44521b
|
|
4
|
+
data.tar.gz: 94df2afc2f0da51c666253a50b079e27b640a5984b19a87ccdbf90faea5dd35c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 466e4e375c0e9a74763c07fb83f65a5aeff93a91a721c12aea1da5a310ec213136d37247e6096373067b8645c10087e854dff926e6af59a723d9dee08a920231
|
|
7
|
+
data.tar.gz: 1596c48b363635e219ca20e7698334cbf22a0ea732e4260a9ad7ea1540e17ab4b5b8ba7dae02356b97c56b9d31e6bed2f4dcafa94e13dcc97a8680b8a1532d32
|
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.7.3] - 2020-12-24
|
|
7
|
+
- [#44](https://github.com/boltops-tools/kubes/pull/44) require singleton
|
|
8
|
+
|
|
6
9
|
## [0.7.2] - 2020-12-04
|
|
7
10
|
- [#43](https://github.com/boltops-tools/kubes/pull/43) store docker image name in env based folder
|
|
8
11
|
- fix kubes help
|
|
@@ -18,5 +18,5 @@ logger.level | Logger level. Can also be set with `KUBES_LOG_LEVEL` env var | in
|
|
|
18
18
|
repo | The Docker repo to use. Required to be set. | nil
|
|
19
19
|
repo_auto_auth | Whether or not to try to auth authorize docker repo registry if not yet logged in. Can also be set with env var `KUBES_REPO_AUTO_AUTO` | true
|
|
20
20
|
skip | List of resources to skip. Can also be set with the `KUBES_SKIP` env var. `KUBES_SKIP` should be a list of strings separated by spaces. It adds onto the `config.skip` option. | []
|
|
21
|
-
state.path | Where to store the state file with the last build Docker image. | .kubes/state/
|
|
21
|
+
state.path | Where to store the state file with the last build Docker image. | .kubes/state/KUBES_ENV/data.json
|
|
22
22
|
suffix_hash | Whether or not to append suffix hash to ConfigMap and Secret | true
|
data/lib/kubes.rb
CHANGED
data/lib/kubes/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kubes
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tung Nguyen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-12-
|
|
11
|
+
date: 2020-12-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|