Class: Pipedawg::Job::Helm

Inherits:
Pipedawg::Job show all
Defined in:
lib/pipedawg/job/helm.rb,
lib/pipedawg/job/helm/copy.rb

Overview

Pipedawg::Job::Helm class

Direct Known Subclasses

Copy

Defined Under Namespace

Classes: Copy

Instance Attribute Summary

Attributes inherited from Pipedawg::Job

#name, #opts

Instance Method Summary collapse

Methods inherited from Pipedawg::Job

#to_hash

Constructor Details

#initialize(name, opts = {}) ⇒ Helm

Returns a new instance of Helm.



7
8
9
10
11
12
13
# File 'lib/pipedawg/job/helm.rb', line 7

def initialize(name, opts = {})
  opts = {
    command: 'helm',
    image: { entrypoint: [''], name: 'alpine/helm' }
  }.merge(opts)
  super name, opts
end