Sha256: 128c648bbfbd5ceb4c344c6ddd0faebb136fbe91a15f52eb492790b7c190760b

Contents?: true

Size: 1.97 KB

Versions: 8

Compression:

Stored size: 1.97 KB

Contents

module DPL
  class Provider
    class BluemixCloudFoundry < Provider

      # NOTE: Much of this class is duplicated from CloudFoundry.
      # This is by design. By duplicating a manageable amount of
      # code here, we prevent this provider and its gem `dpl-bluemix_cloud_foundry`
      # from having a dependency on `dpl-cloudfoundry`.
      # Having less dependency is desirable when we install this gem
      # from source.

      REGIONS = Hash.new {"api.ng.bluemix.net"}.update(
        "eu-gb" => "api.eu-gb.bluemix.net",
        "eu-de" => "api.eu-de.bluemix.net",
        "au-syd" => "api.au-syd.bluemix.net"
      )

      def initial_go_tools_install
        context.shell 'test x$TRAVIS_OS_NAME = "xlinux" && rel="linux64-binary" || rel="macosx64"; wget "https://cli.run.pivotal.io/stable?release=${rel}&source=github" -qO cf.tgz && tar -zxvf cf.tgz && rm cf.tgz'
      end

      def check_auth
        set_api
        initial_go_tools_install
        context.shell "./cf api #{option(:api)} #{'--skip-ssl-validation' if options[:skip_ssl_validation]}"
        context.shell "./cf login -u #{option(:username)} -p #{option(:password)} -o #{option(:organization)} -s #{option(:space)}"
      end

      def check_app
        if options[:manifest]
          error 'Application must have a manifest.yml for unattended deployment' unless File.exists? options[:manifest]
        end
      end

      def needs_key?
        false
      end

      def push_app
        error 'Failed to push app' unless context.shell("./cf push#{app_name}#{manifest}")

      ensure
        context.shell "./cf logout"
      end

      def cleanup
      end

      def uncleanup
      end

      def app_name
        options[:app_name].nil? ? "" : " '#{options[:app_name]}'"
      end

      def manifest
        options[:manifest].nil? ? "" : " -f #{options[:manifest]}"
      end

      def set_api
        region = options[:region] || "ng"
        options[:api] = options[:api] || REGIONS[region]
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
dpl-cloud_foundry-1.10.6.travis.3090.5 lib/dpl/provider/bluemix_cloud_foundry.rb
dpl-bluemix_cloud_foundry-1.10.6.travis.3090.5 lib/dpl/provider/bluemix_cloud_foundry.rb
dpl-cloud_foundry-1.10.5 lib/dpl/provider/bluemix_cloud_foundry.rb
dpl-bluemix_cloud_foundry-1.10.5 lib/dpl/provider/bluemix_cloud_foundry.rb
dpl-cloud_foundry-1.10.5.travis.3089.5 lib/dpl/provider/bluemix_cloud_foundry.rb
dpl-bluemix_cloud_foundry-1.10.5.travis.3089.5 lib/dpl/provider/bluemix_cloud_foundry.rb
dpl-cloud_foundry-1.10.5.travis.3069.5 lib/dpl/provider/bluemix_cloud_foundry.rb
dpl-bluemix_cloud_foundry-1.10.5.travis.3069.5 lib/dpl/provider/bluemix_cloud_foundry.rb