Class: PlatformAPI::PipelineStack

Inherits:
Object
  • Object
show all
Defined in:
lib/platform-api/client.rb

Overview

A pipeline's stack is determined by the apps in the pipeline. This is used during creation of CI and Review Apps that have no stack defined in app.json

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ PipelineStack

Returns a new instance of PipelineStack.



2547
2548
2549
# File 'lib/platform-api/client.rb', line 2547

def initialize(client)
  @client = client
end

Instance Method Details

#default_stack(pipeline_id) ⇒ Object

The stack for a given pipeline, used for CI and Review Apps that have no stack defined in app.json.

Parameters:

  • pipeline_id:

    unique identifier of pipeline



2554
2555
2556
# File 'lib/platform-api/client.rb', line 2554

def default_stack(pipeline_id)
  @client.pipeline_stack.default_stack(pipeline_id)
end