Sha256: 8aee39adead17c951b2c8c51121f78f8a271f199c8d686fb82ed42e3b19d59b2
Contents?: true
Size: 746 Bytes
Versions: 1
Compression:
Stored size: 746 Bytes
Contents
require 'byebug' module K8sKit class Job attr_reader :context, :name def initialize(context, name) @context = context @name = name end def attach(container:, delete_on_completion: true, exit_on_completion: true) pod.wait_until_ready pod.logs(container: container, stream: true) exit_code = pod.exit_code(container: container) delete if delete_on_completion exit exit_code if exit_on_completion exit_code end def delete context.run("delete job #{name}") end def pod @pod ||= begin pod_name = context.run("get pod -l job-name=#{name} -o jsonpath='{.items[0].metadata.name}'") Pod.new(context, pod_name) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
k8s_kit-0.0.4 | lib/k8s_kit/job.rb |