swarm_cluster_cli_ope 0.5.2 → 0.5.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/Gemfile.lock +13 -14
- data/lib/swarm_cluster_cli_ope/kubernetes/pod.rb +1 -0
- data/lib/swarm_cluster_cli_ope/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: bb55538ef01dfe147ffa9fae04ff38d63e68af9a1faa85ced4775a3bacd82644
|
|
4
|
+
data.tar.gz: 115cc147db39a35fcd2f34aa4f8389ca538dd09e271e7f8c687bb7d96e964f64
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0d2c8ae9c0ab3209d8cbd4e44a3635509aa9d6b0a2a35f449a87a4f6beee3403f6a6d80f394af9375ec0904d8f9f0841b1390538b79288153553cf914373ae49
|
|
7
|
+
data.tar.gz: 9ae569814dc2299265a3d4833aac1f0e62251b8d195a94ea308fafeec6d1ba07401faeebcf9f55a7015dff07d601e768ae4d6722b3c4e0ee811d3d978375e37c
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
swarm_cluster_cli_ope (0.5.
|
|
4
|
+
swarm_cluster_cli_ope (0.5.3)
|
|
5
5
|
activesupport
|
|
6
6
|
open4
|
|
7
7
|
thor (~> 1.0)
|
|
@@ -10,23 +10,22 @@ PATH
|
|
|
10
10
|
GEM
|
|
11
11
|
remote: https://rubygems.org/
|
|
12
12
|
specs:
|
|
13
|
-
activesupport (6.
|
|
13
|
+
activesupport (6.1.1)
|
|
14
14
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
15
|
-
i18n (>=
|
|
16
|
-
minitest (
|
|
17
|
-
tzinfo (~>
|
|
18
|
-
zeitwerk (~> 2.
|
|
19
|
-
concurrent-ruby (1.1.
|
|
20
|
-
i18n (1.8.
|
|
15
|
+
i18n (>= 1.6, < 2)
|
|
16
|
+
minitest (>= 5.1)
|
|
17
|
+
tzinfo (~> 2.0)
|
|
18
|
+
zeitwerk (~> 2.3)
|
|
19
|
+
concurrent-ruby (1.1.8)
|
|
20
|
+
i18n (1.8.7)
|
|
21
21
|
concurrent-ruby (~> 1.0)
|
|
22
|
-
minitest (5.14.
|
|
22
|
+
minitest (5.14.3)
|
|
23
23
|
open4 (1.3.4)
|
|
24
24
|
rake (12.3.3)
|
|
25
|
-
thor (1.0
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
zeitwerk (2.4.1)
|
|
25
|
+
thor (1.1.0)
|
|
26
|
+
tzinfo (2.0.4)
|
|
27
|
+
concurrent-ruby (~> 1.0)
|
|
28
|
+
zeitwerk (2.4.2)
|
|
30
29
|
|
|
31
30
|
PLATFORMS
|
|
32
31
|
ruby
|
|
@@ -90,6 +90,7 @@ module SwarmClusterCliOpe
|
|
|
90
90
|
base_cmd << "--context=#{context}" unless context.blank?
|
|
91
91
|
base_cmd << "get pod"
|
|
92
92
|
base_cmd << "--selector=#{selector}"
|
|
93
|
+
base_cmd << "--field-selector=status.phase=Running" #solo pod che stanno girando teniamo sotto controllo
|
|
93
94
|
base_cmd << "--output=json"
|
|
94
95
|
|
|
95
96
|
cmd = ShellCommandExecution.new(base_cmd)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: swarm_cluster_cli_ope
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marino Bonetti
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-01-
|
|
11
|
+
date: 2021-01-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|