gitlab-org--gitlab-foss/app/services/clusters/applications/base_helm_service.rb
2017-11-07 17:12:41 +01:00

29 lines
467 B
Ruby

module Clusters
module Applications
class BaseHelmService
attr_accessor :app
def initialize(app)
@app = app
end
protected
def cluster
app.cluster
end
def kubeclient
cluster.kubeclient
end
def helm_api
@helm_api ||= Gitlab::Kubernetes::Helm.new(kubeclient)
end
def install_command
@install_command ||= app.install_command
end
end
end
end