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.



2567
2568
2569
# File 'lib/platform-api/client.rb', line 2567

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



2574
2575
2576
# File 'lib/platform-api/client.rb', line 2574

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