kubernetes_template_rendering 0.2.0 → 0.2.1.pre.dc.0
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: f7b242fd586f046697f6e535add0afa36a8788db2525180b8371c6dd21723c3d
|
|
4
|
+
data.tar.gz: 32d98d08ae6e0f05f5beaffe8a494cbc4bb090983f03c2e7887d2e3818e243df
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6cccee5ee9a9d1bbca7ff720134f7de6acf91cc8eb06b5a8915bb7809465282db7fca7aef639b13b6c874ef4e580aab235bb3b86a287dba349c031f5cb71401f
|
|
7
|
+
data.tar.gz: 7809594f19e079b1358411bbae0a7c03cf235e5ce84ade1c4fc77b1d87666d6827e7600413b4eafbb38277dda8416252e5bae62ec8371ff1c36cf124582837cf
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ Inspired by [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
|
4
4
|
|
|
5
5
|
Note: this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.2.1] - Unreleased
|
|
8
|
+
### Fixed
|
|
9
|
+
- Fixed a bug allowing child process errors to be ignored while rendering.
|
|
10
|
+
|
|
7
11
|
## [0.2.0] - 2024-05-06
|
|
8
12
|
### Added
|
|
9
13
|
- Added support for passing `--source-repo` flag into command line so that the rendered manifest comments can include a link to the source repository.
|
|
@@ -49,7 +49,11 @@ module KubernetesTemplateRendering
|
|
|
49
49
|
end
|
|
50
50
|
|
|
51
51
|
if args.fork?
|
|
52
|
-
Process.waitall
|
|
52
|
+
process_statuses = Process.waitall
|
|
53
|
+
|
|
54
|
+
if (failed_processes = process_statuses.select { |_, status| !status.success? }).any?
|
|
55
|
+
raise "Child process completed with non-zero status: #{failed_processes.inspect}"
|
|
56
|
+
end
|
|
53
57
|
end
|
|
54
58
|
end
|
|
55
59
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kubernetes_template_rendering
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.0
|
|
4
|
+
version: 0.2.1.pre.dc.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Octothorpe
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-06-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -104,11 +104,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
104
104
|
version: 3.1.0
|
|
105
105
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
106
106
|
requirements:
|
|
107
|
-
- - "
|
|
107
|
+
- - ">"
|
|
108
108
|
- !ruby/object:Gem::Version
|
|
109
|
-
version:
|
|
109
|
+
version: 1.3.1
|
|
110
110
|
requirements: []
|
|
111
|
-
rubygems_version: 3.
|
|
111
|
+
rubygems_version: 3.3.26
|
|
112
112
|
signing_key:
|
|
113
113
|
specification_version: 4
|
|
114
114
|
summary: Tool for rendering ERB and Jsonnet templates
|