kuberun 0.3.4 → 0.4.1

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: 8c65099c3fc72bae79d18cce6783d1a6bf4a639032bf9479fb554b125d4d8ba3
4
- data.tar.gz: d3b9c243218d76399fcda5999ea89c76d73ca26f8609e00f07ba1ff8e6f99a03
3
+ metadata.gz: 7415f597bc63da50711b0bfdcaf3736c3abe02fce49df4cf6ac0147650da4014
4
+ data.tar.gz: daef538b4d95b8b73740aa7a89dbeef9b64bfa16dc091e6454d240cb36cede4a
5
5
  SHA512:
6
- metadata.gz: acfb1a9fbcee7d70268918e813274f083a6fac79ce362d62960503e20004ba443471fb1fdd35d978a3ae6ef149a4edfc80b146a1e36d4bd74b3094e1b280b15b
7
- data.tar.gz: e5a84c0340ff06a0d726855c38068e19f50f39a94cef936174c2e61debbc7d0666c39afd32a0ba73060bec219f5b6fe055a391dca121d40c5e02eb2fde70c2f5
6
+ metadata.gz: 5f21070afd4360e4b3f72c17854db97be84810a04f00dafd786c2a82d6d810a772c57c1a09107597f834f2cc78b6e6296a7ed1f05e5d28c17b6c4ea596530175
7
+ data.tar.gz: 11222e3b82448a137d93fbdff260db60fd9d233135c4300ee42dd5097b9d83714c649ac51035d2fc2dad19c4e87410aeb933c21330622f9b04cf45768476607a
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- kuberun (0.3.4)
4
+ kuberun (0.4.1)
5
5
  pastel (~> 0.8.0)
6
6
  thor (~> 1.2.1)
7
7
  tty-command (~> 0.10.1)
@@ -85,12 +85,14 @@ module Kuberun
85
85
  }
86
86
 
87
87
  pod_template['spec']['containers'].each do |container|
88
+ container.delete('securityContext')
88
89
  container.delete('livenessProbe')
89
90
  container.delete('readinessProbe')
90
91
  container['command'] = %w[/bin/sh -c --]
91
92
  container['args'] = ['while true; do sleep 1000; done']
92
93
  end
93
94
 
95
+ pod_template['spec'].delete('securityContext')
94
96
  pod_template['spec'].delete('priority')
95
97
  pod_template['spec']['priorityClassName'] = 'system-cluster-critical'
96
98
  pod_template['spec']['affinity'] = {
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Kuberun
4
- VERSION = '0.3.4'
4
+ VERSION = '0.4.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kuberun
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.4
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - kruczjak
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-10-04 00:00:00.000000000 Z
11
+ date: 2023-04-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pastel