Sha256: 875ee7ba3d3168e82e3cdc9a719d3ceeaae629e3df5e85f38d0c1856d99db572

Contents?: true

Size: 1.66 KB

Versions: 6

Compression:

Stored size: 1.66 KB

Contents

require 'json'
require 'commands/add-env'
require 'plan-step-class'
require 'yaml'
require 'canzea/config'

class PreparePlan
    def initialize ()
        @log = Logger.new(Canzea::config[:logging_root] + '/plans.log')
        @basePath = "#{Pathname.new(Canzea::config[:catalog_location]).realpath}/catalog"
    end

    # Read the blueprint instructions and prepare plan for a particular segment
    def do (blueprint, segment, step, test, privateKey, serverBase, serverNumber)
        planStep = PlanStep.new

        log "Processing configure.json for #{segment} in #{blueprint} from #{@basePath}"

        instructions = YAML.load_file("#{@basePath}/blueprints/#{blueprint}/instruction.yml")
        segment = instructions['instructions']['segments'][segment]

        log segment['abbreviation']

        index = 1
        segment['image'].each { |item|
            if item.start_with?("step:")
                parts = item.split(':')

                if (index < Integer(step))
                    log "[#{index.to_s.rjust(2, "0")}] #{item} SKIPPING"
                else
                    log "[#{index.to_s.rjust(2, "0")}] #{item}"
                    if (test == false)
                        publicIp = File.read("#{Canzea::config[:pwd]}/vps-#{serverBase}-#{serverNumber}.json")
                        RemoteRun.new.do publicIp, privateKey, parts[1], parts[2], index.to_s.rjust(2, "0")
                        # Keep track of what we have done; parsing the response and looking at the JSON
                    end
                end
                index = index + 1
            end
        }
    end

    def log (msg)
        puts "-- #{msg}"
        @log.info(msg)
    end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
canzea-0.1.76 lib/commands/prepare-plan.rb
canzea-0.1.74 lib/commands/prepare-plan.rb
canzea-0.1.73 lib/commands/prepare-plan.rb
canzea-0.1.72 lib/commands/prepare-plan.rb
canzea-0.1.71 lib/commands/prepare-plan.rb
canzea-0.1.70 lib/commands/prepare-plan.rb