kitchen-dokken 2.23.4 → 2.23.5
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/kitchen/driver/dokken.rb +26 -0
- data/lib/kitchen/driver/dokken_version.rb +1 -1
- data/lib/kitchen/transport/dokken.rb +54 -18
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ed64ab202db24ce243e1a4c26083a924b194aec6a3cc448c88de450d6e53e091
|
|
4
|
+
data.tar.gz: d252f250ec7bc1af41500443d3c2edf295b622d0222467fc9a1bb1edc552b065
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: df9c8ca5f29d747dc3e4838338f793e46cc4ea3138db6fbd9f4cd65ce0a94cbf3a2a62a0417fd312b399258d378bd046d6659a55fcc982264a6908587ccee049
|
|
7
|
+
data.tar.gz: dd0477b6314e4ae2efc3b529b77cad5408493b157bd49471205edfdc5a6eaf464feb51a12928259195c80ce14c65d22e39a13c017e7de0105569e02606e8c858
|
|
@@ -907,6 +907,7 @@ module Kitchen
|
|
|
907
907
|
# @param args [Hash] the `/containers/create` body
|
|
908
908
|
# @param platform [String, nil] an OCI platform to pin the container to
|
|
909
909
|
# @return [::Docker::Container] the running container
|
|
910
|
+
# @raise [Kitchen::ActionFailed] if the container will not stay running
|
|
910
911
|
def run_container(args, platform: nil)
|
|
911
912
|
@container = create_container(args, platform: platform)
|
|
912
913
|
with_retries do
|
|
@@ -914,9 +915,34 @@ module Kitchen
|
|
|
914
915
|
@container = ::Docker::Container.get(args["name"], {}, docker_connection)
|
|
915
916
|
wait_running_state(args["name"], true)
|
|
916
917
|
end
|
|
918
|
+
assert_running!(args["name"])
|
|
917
919
|
@container
|
|
918
920
|
end
|
|
919
921
|
|
|
922
|
+
# Fail the action when a container that has to run is not running.
|
|
923
|
+
#
|
|
924
|
+
# wait_running_state stops polling as soon as `FinishedAt` is set, which
|
|
925
|
+
# is precisely the case for a container whose pid 1 exited -- so without
|
|
926
|
+
# this check `kitchen create` reported success and exited 0, leaving the
|
|
927
|
+
# user to discover the problem at converge as a bare docker API message:
|
|
928
|
+
# "container dd55d579... is not running". A container id, no instance
|
|
929
|
+
# name, and no clue that pid 1 was the cause.
|
|
930
|
+
#
|
|
931
|
+
# Only containers that must actually run reach here; the chef container
|
|
932
|
+
# is a volume and is never started.
|
|
933
|
+
#
|
|
934
|
+
# @param name [String] the container name
|
|
935
|
+
# @return [void]
|
|
936
|
+
# @raise [Kitchen::ActionFailed] if the container is not running
|
|
937
|
+
def assert_running!(name)
|
|
938
|
+
return if container_state["Running"]
|
|
939
|
+
|
|
940
|
+
raise ActionFailed,
|
|
941
|
+
"The #{name} container exited immediately after being started. " \
|
|
942
|
+
"Its pid 1 did not stay up: check `pid_one_command`, `entrypoint`, " \
|
|
943
|
+
"and that the image can boot (`docker logs #{name}` shows why)."
|
|
944
|
+
end
|
|
945
|
+
|
|
920
946
|
# The current container's `State` payload.
|
|
921
947
|
#
|
|
922
948
|
# @return [Hash] the state, or an empty hash if there is no container
|
|
@@ -211,6 +211,31 @@ module Kitchen
|
|
|
211
211
|
"The data container has no address on any docker network: #{settings[:Networks].inspect}"
|
|
212
212
|
end
|
|
213
213
|
|
|
214
|
+
# Every address the data container has, best candidate first.
|
|
215
|
+
#
|
|
216
|
+
# A user-defined network comes before the default bridge. That order
|
|
217
|
+
# matters when kitchen is itself a container: a sibling on the dokken
|
|
218
|
+
# network can reach the container there but has no route to its
|
|
219
|
+
# bridge address, and preferring the bridge would send every upload
|
|
220
|
+
# to the docker host instead.
|
|
221
|
+
#
|
|
222
|
+
# The legacy top-level `IPAddress` is the default bridge's, so it
|
|
223
|
+
# sorts with the bridge and is deduplicated against it.
|
|
224
|
+
#
|
|
225
|
+
# @return [Array<String>] addresses, most specific network first
|
|
226
|
+
# @api private
|
|
227
|
+
def data_container_addresses
|
|
228
|
+
settings = options[:data_container][:NetworkSettings]
|
|
229
|
+
networks = settings[:Networks] || {}
|
|
230
|
+
|
|
231
|
+
user_defined, default_bridge = networks.partition { |name, _| name.to_s != "bridge" }
|
|
232
|
+
|
|
233
|
+
addresses = (user_defined + default_bridge).map { |_, network| network[:IPAddress].to_s }
|
|
234
|
+
addresses << settings[:IPAddress].to_s
|
|
235
|
+
|
|
236
|
+
addresses.reject(&:empty?).uniq
|
|
237
|
+
end
|
|
238
|
+
|
|
214
239
|
# Pick an endpoint for a daemon reached over tcp.
|
|
215
240
|
#
|
|
216
241
|
# The container's address on the dokken network is preferred, since it
|
|
@@ -221,31 +246,42 @@ module Kitchen
|
|
|
221
246
|
# @return [Array(String, String)] the address and port to ssh to
|
|
222
247
|
# @api private
|
|
223
248
|
def tcp_ssh_endpoint
|
|
224
|
-
name = options[:data_container][:Name]
|
|
225
|
-
|
|
226
249
|
# DOCKER_HOST
|
|
227
250
|
docker_host_url_ip = options[:docker_host_url].split("tcp://")[1].split(":")[0]
|
|
228
251
|
|
|
229
|
-
# mapped IP of data container
|
|
230
|
-
candidate_ip = ::Docker::Container.all.find do |x|
|
|
231
|
-
x.info["Names"][0].eql?(name)
|
|
232
|
-
end.info["NetworkSettings"]["Networks"]["dokken"]["IPAddress"]
|
|
233
|
-
|
|
234
252
|
# mapped port
|
|
235
253
|
candidate_ssh_port = published_ssh_port
|
|
236
254
|
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
255
|
+
# The addresses come from the state the driver recorded after it
|
|
256
|
+
# started the container. This used to ask the daemon instead --
|
|
257
|
+
# Docker::Container.all, find ours by name, then read
|
|
258
|
+
# Networks["dokken"]["IPAddress"] -- which was wrong twice over.
|
|
259
|
+
#
|
|
260
|
+
# Container.all lists only *running* containers, so a data container
|
|
261
|
+
# that had exited made `find` return nil and the chained `.info`
|
|
262
|
+
# raise `undefined method 'info' for nil`. And the dokken network is
|
|
263
|
+
# only attached when network_mode is left at its default:
|
|
264
|
+
# start_data_container adds the endpoint
|
|
265
|
+
# "unless %w{host bridge}.include?" and names it after network_mode,
|
|
266
|
+
# so `bridge`, `host` and every custom network name produced
|
|
267
|
+
# `undefined method '[]' for nil` on a remote daemon.
|
|
268
|
+
data_container_addresses.each do |candidate_ip|
|
|
269
|
+
debug "candidate_ip - #{candidate_ip}"
|
|
270
|
+
debug "candidate_ssh_port - #{candidate_ssh_port}"
|
|
271
|
+
|
|
272
|
+
if port_open?(candidate_ip, candidate_ssh_port)
|
|
273
|
+
debug "candidate_ip - #{candidate_ip}/#{candidate_ssh_port} open"
|
|
274
|
+
return [candidate_ip, candidate_ssh_port]
|
|
275
|
+
elsif port_open?(candidate_ip, "22")
|
|
276
|
+
debug "candidate_ip - #{candidate_ip}/22 open"
|
|
277
|
+
return [candidate_ip, "22"]
|
|
278
|
+
end
|
|
248
279
|
end
|
|
280
|
+
|
|
281
|
+
# Nothing answered, or -- with host networking -- the container has
|
|
282
|
+
# no address of its own to try. The docker host is the endpoint.
|
|
283
|
+
debug "no data container address answered; falling back to the docker host"
|
|
284
|
+
[docker_host_url_ip, candidate_ssh_port]
|
|
249
285
|
end
|
|
250
286
|
|
|
251
287
|
# Write the built-in insecure private key somewhere ssh will accept it.
|