metatron 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7be8fd32bdf4ce62a28058510331ae0add378955f77e26b15fd77c9a3e5e1e40
4
- data.tar.gz: 32193fca77a3b4d6015090c7aa4ae47921c18a808872d0b6fa1552303c50916b
3
+ metadata.gz: 6ccfd1e08895f074e8acfb5f5f5d5bea896b3bc2b721cf554bf63331fd678653
4
+ data.tar.gz: 2d51b181787cdd3c68d83cd69dbf7475e973cdd85edafd458a59a324328a6d9a
5
5
  SHA512:
6
- metadata.gz: dedc229ae2283d2fec91477289aabd079e8c2bdab5d682dc40cf0376191e0e1dd158374e2b984afa7b0145ac18bb8830d4f0c1d9edea28b7001dfc64f3dce63a
7
- data.tar.gz: 49092eadfc7a43b1d3bb8e5ac65c1bc56c2780b2dc08841da8842e66dcd041497e97efab209def7b5ffbee1dac01dd2a426514f11d9c428755794796c20db3f2
6
+ metadata.gz: 68e7e4f205727a2224b1c3475a083a0f0977fe4f55bebb13791492e1fdf314f8ac4201296acccd0d3c02043d19bf496b90054df11d20938f519fcc7c843d52e9
7
+ data.tar.gz: 855ef7826fdd9e9a8a1fd3cc657acec1978dde48d8172b352cf8664953edd1b4c769c106f1e0dc22c2378a2c47b2fb6a3440a0078a253f03e0d1983495d9e278
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- metatron (0.3.1)
4
+ metatron (0.3.2)
5
5
  json (~> 2.6)
6
6
  puma (~> 6.3)
7
7
  sinatra (~> 2.2)
@@ -6,13 +6,15 @@ module Metatron
6
6
  class Container
7
7
  attr_accessor :name, :image, :command, :args, :env, :envfrom, :resources, :volume_mounts,
8
8
  :image_pull_policy, :lifecycle, :probes, :security_context, :ports,
9
- :stdin, :tty
9
+ :stdin, :tty, :termination_message_path, :termination_message_policy
10
10
 
11
11
  alias imagePullPolicy image_pull_policy
12
12
  alias volumeMounts volume_mounts
13
13
  alias securityContext security_context
14
14
  alias environment env
15
15
  alias envFrom envfrom
16
+ alias terminationMessagePath termination_message_path
17
+ alias terminationMessagePolicy termination_message_policy
16
18
 
17
19
  def initialize(name, image = "gcr.io/google_containers/pause")
18
20
  @name = name
@@ -27,6 +29,8 @@ module Metatron
27
29
  @probes = {}
28
30
  @stdin = true
29
31
  @tty = true
32
+ @termination_message_path = nil
33
+ @termination_message_policy = nil
30
34
  end
31
35
 
32
36
  def render # rubocop:disable Metrics/AbcSize
@@ -36,7 +40,9 @@ module Metatron
36
40
  image:,
37
41
  imagePullPolicy:,
38
42
  stdin:,
39
- tty:
43
+ tty:,
44
+ terminationMessagePath:,
45
+ terminationMessagePolicy:
40
46
  }.merge(probes)
41
47
  .merge(formatted_resources)
42
48
  .merge(formatted_environment)
@@ -4,6 +4,6 @@ module Metatron
4
4
  VERSION = [
5
5
  0, # major
6
6
  3, # minor
7
- 1 # patch
7
+ 2 # patch
8
8
  ].join(".")
9
9
  end
data/lib/metatron.rb CHANGED
@@ -33,6 +33,7 @@ require "metatron/templates/pod"
33
33
  require "metatron/templates/job"
34
34
  require "metatron/templates/config_map"
35
35
  require "metatron/templates/cluster_role"
36
+ require "metatron/templates/cluster_role_binding"
36
37
  require "metatron/templates/cron_job"
37
38
  require "metatron/templates/daemon_set"
38
39
  require "metatron/templates/deployment"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metatron
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Gnagy
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-08-22 00:00:00.000000000 Z
11
+ date: 2023-08-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json