Sha256: 90d17659a3a5ac16ee65efa0caaf535c028e126d123139858d96ce2be37a4928
Contents?: true
Size: 877 Bytes
Versions: 1
Compression:
Stored size: 877 Bytes
Contents
module K8sKit class Pod attr_reader :context, :name def initialize(context, name) @context = context @name = name end def logs(container: nil, stream: false) command = "logs #{name}" command += " -c #{container}" if container command += " -f" if stream context.run(command, silent: false) end def wait_until_ready(timeout: '5m') context.run("wait pod/#{name} --for=condition=Ready --timeout=#{timeout}") end def wait_until_complete(timeout: '5m') context.run("wait pod/#{name} --for=condition=Completed") end def exit_code(container:) json_path = "{ .status.containerStatuses[?(@.name == '#{container}')].state.terminated.exitCode }" context.run("get pod #{name} -o jsonpath=\"#{json_path}\"").to_i rescue StandardError puts "Eek" nil end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
k9s_kit-0.0.7.pre.pre5 | lib/k8s_kit/pod.rb |