kubeclient_exec 0.1.2 → 0.2.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 +4 -4
- data/lib/kubeclient_exec/copy/copy.rb +45 -10
- data/lib/kubeclient_exec/execute/execute.rb +2 -0
- data/lib/kubeclient_exec/execute/executor.rb +16 -5
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 274101b279088781eb0174768f8f276386c0c984ac8103a0b20e5324fb0d513c
|
4
|
+
data.tar.gz: 23ff5894068bd1e43e5df70345c7bc5c70f4b172054ee9483ef78e9efce351d6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2187896745c3f28154ebf0de96b2cd0e3e97ba1c59c107c574f6667656c27ec011f636af7af314aaeb3a5a9c458f5d468164a426d881fcfea2fb49d134881c2a
|
7
|
+
data.tar.gz: 9e58927e75109caf0a0020957522106b21e9fa6c232ffc3610390fc10362466e74f0a81e25b8569e971c8bd3562a86485aa76f0c1568ed844f571f2ebbbba723
|
@@ -12,7 +12,9 @@ module KubeclientExec
|
|
12
12
|
suppress_errors: false,
|
13
13
|
tls: {
|
14
14
|
cert_chain_file: nil,
|
15
|
+
cert: nil,
|
15
16
|
private_key_file: nil,
|
17
|
+
private_key: nil,
|
16
18
|
verify_peer: true
|
17
19
|
}
|
18
20
|
}
|
@@ -42,13 +44,22 @@ module KubeclientExec
|
|
42
44
|
|
43
45
|
if copy_file
|
44
46
|
exec_pod("tar xf - -C #{remote_path.split('/')[0...-1].join('/')}", name, namespace, options: { tty: false }.merge!(options)) do |executor|
|
45
|
-
|
47
|
+
chunks = split_string_into_chunks(tar_file.string, 1024 * 1024) # 1MB
|
48
|
+
chunks.each do |chunk|
|
49
|
+
executor.write(chunk)
|
50
|
+
end
|
46
51
|
|
47
52
|
# Feels like there should be a better way for this
|
53
|
+
stopping = false
|
48
54
|
EM.add_periodic_timer(0.1) do
|
49
|
-
if executor.done?
|
55
|
+
if executor.done? && !stopping
|
56
|
+
stopping = true
|
50
57
|
executor.stop
|
51
58
|
end
|
59
|
+
|
60
|
+
if executor.ready_state == 3
|
61
|
+
EM.stop_event_loop
|
62
|
+
end
|
52
63
|
end
|
53
64
|
end
|
54
65
|
else
|
@@ -56,10 +67,16 @@ module KubeclientExec
|
|
56
67
|
executor.write(tar_file.string)
|
57
68
|
|
58
69
|
# Feels like there should be a better way for this
|
70
|
+
stopping = false
|
59
71
|
EM.add_periodic_timer(0.1) do
|
60
|
-
if executor.done?
|
72
|
+
if executor.done? && !stopping
|
73
|
+
stopping = true
|
61
74
|
executor.stop
|
62
75
|
end
|
76
|
+
|
77
|
+
if executor.ready_state == 3
|
78
|
+
EM.stop_event_loop
|
79
|
+
end
|
63
80
|
end
|
64
81
|
end
|
65
82
|
end
|
@@ -70,22 +87,40 @@ module KubeclientExec
|
|
70
87
|
|
71
88
|
exec_pod("tar cf - #{remote_path}", name, namespace, options: { tty: false }.merge!(options)) do |executor|
|
72
89
|
count = 0
|
90
|
+
content = ''
|
73
91
|
|
74
92
|
executor.on_stdout do |data|
|
75
|
-
if count
|
76
|
-
|
77
|
-
untar(StringIO.new(data), local_path)
|
78
|
-
elsif local_path == :single_result
|
79
|
-
result = single_untar(StringIO.new(data))
|
80
|
-
end
|
81
|
-
executor.stop
|
93
|
+
if count >= 1
|
94
|
+
content += data
|
82
95
|
end
|
83
96
|
|
84
97
|
count += 1
|
85
98
|
end
|
99
|
+
|
100
|
+
executor.on_close do
|
101
|
+
if local_path.is_a? String
|
102
|
+
untar(StringIO.new(content), local_path)
|
103
|
+
elsif local_path == :single_result
|
104
|
+
result = single_untar(StringIO.new(content))
|
105
|
+
end
|
106
|
+
end
|
86
107
|
end
|
87
108
|
|
88
109
|
result
|
89
110
|
end
|
111
|
+
|
112
|
+
private
|
113
|
+
def split_string_into_chunks(string, chunk_size)
|
114
|
+
chunks = []
|
115
|
+
start_index = 0
|
116
|
+
|
117
|
+
while start_index < string.length
|
118
|
+
chunk = string[start_index, chunk_size]
|
119
|
+
chunks << chunk
|
120
|
+
start_index += chunk_size
|
121
|
+
end
|
122
|
+
|
123
|
+
chunks
|
124
|
+
end
|
90
125
|
end
|
91
126
|
end
|
@@ -55,8 +55,12 @@ module KubeclientExec
|
|
55
55
|
end
|
56
56
|
|
57
57
|
def stop
|
58
|
-
@ws.
|
58
|
+
@ws.instance_variable_get(:@stream).close_connection_after_writing
|
59
59
|
@on_close.call if @on_close
|
60
|
+
end
|
61
|
+
|
62
|
+
def stop!
|
63
|
+
stop
|
60
64
|
EM.stop_event_loop
|
61
65
|
end
|
62
66
|
|
@@ -64,6 +68,10 @@ module KubeclientExec
|
|
64
68
|
@ws.instance_variable_get(:@driver).instance_variable_get(:@queue).empty?
|
65
69
|
end
|
66
70
|
|
71
|
+
def ready_state
|
72
|
+
@ws.ready_state
|
73
|
+
end
|
74
|
+
|
67
75
|
private
|
68
76
|
def setup
|
69
77
|
@ws = Faye::WebSocket::Client.new(@url, nil, {
|
@@ -71,14 +79,17 @@ module KubeclientExec
|
|
71
79
|
headers: @kubeclient_options[:headers],
|
72
80
|
tls: {
|
73
81
|
cert_chain_file: @kubeclient_options[:tls][:cert_chain_file],
|
82
|
+
cert: @kubeclient_options[:tls][:cert],
|
74
83
|
private_key_file: @kubeclient_options[:tls][:private_key_file],
|
84
|
+
private_key: @kubeclient_options[:tls][:private_key],
|
75
85
|
verify_peer: @kubeclient_options[:tls][:verify_peer],
|
76
|
-
}
|
86
|
+
},
|
87
|
+
max_length: 2**32,
|
77
88
|
})
|
78
89
|
|
79
90
|
@ws.on(:message) do |msg|
|
80
91
|
if msg.type == :close
|
81
|
-
stop
|
92
|
+
stop!
|
82
93
|
return
|
83
94
|
end
|
84
95
|
|
@@ -91,7 +102,7 @@ module KubeclientExec
|
|
91
102
|
if @options[:mode] == :adhoc
|
92
103
|
@last_stdout = 1 if type == EXEC_STDOUT
|
93
104
|
@last_stderr = 1 if type == EXEC_STDERR || EXEC_DCKERR
|
94
|
-
stop
|
105
|
+
stop!
|
95
106
|
end
|
96
107
|
end
|
97
108
|
|
@@ -112,7 +123,7 @@ module KubeclientExec
|
|
112
123
|
end
|
113
124
|
|
114
125
|
@ws.on(:close) do
|
115
|
-
stop
|
126
|
+
stop!
|
116
127
|
end
|
117
128
|
|
118
129
|
@ws.on(:open) do
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kubeclient_exec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Wout Ceulemans
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-03-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: kubeclient
|
@@ -38,7 +38,7 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: 0.11.3
|
41
|
-
description:
|
41
|
+
description:
|
42
42
|
email: me@wout.dev
|
43
43
|
executables: []
|
44
44
|
extensions: []
|
@@ -54,7 +54,7 @@ licenses:
|
|
54
54
|
- MIT
|
55
55
|
metadata:
|
56
56
|
source_code_uri: https://github.com/WoutDev/kubeclient_exec
|
57
|
-
post_install_message:
|
57
|
+
post_install_message:
|
58
58
|
rdoc_options: []
|
59
59
|
require_paths:
|
60
60
|
- lib
|
@@ -70,7 +70,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
70
70
|
version: '0'
|
71
71
|
requirements: []
|
72
72
|
rubygems_version: 3.5.3
|
73
|
-
signing_key:
|
73
|
+
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: An extension to the kubeclient gem that adds exec_pod and cp_pod functionality.
|
76
76
|
test_files: []
|