Sha256: 6b94b454d7a540e30f4907ffef6a6027238176e16138bbd075e3fabdb8ea41c6

Contents?: true

Size: 1.86 KB

Versions: 9

Compression:

Stored size: 1.86 KB

Contents

# frozen_string_literal: true

module Dpl
  module Providers
    class Anynines < Provider
      register :anynines

      status :alpha

      description sq(<<-STR)
        tbd
      STR

      env :anynines

      opt '--username USER',    'anynines username', required: true
      opt '--password PASS',    'anynines password', required: true, secret: true
      opt '--organization ORG', 'anynines organization', required: true
      opt '--space SPACE',      'anynines space', required: true
      opt '--app_name APP',     'Application name'
      opt '--buildpack PACK',   'Buildpack name or Git URL'
      opt '--manifest FILE',    'Path to the manifest'
      opt '--logout', default: true, internal: true

      API = 'https://api.de.a9s.eu'

      cmds install: 'test $(uname) = "Linux" && 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',
           api: './cf api %{url}',
           login: './cf login -u %{username} -p %{password} -o %{organization} -s %{space}',
           push: './cf push %{args}',
           logout: './cf logout'

      errs install: 'Failed to install CLI tools',
           api: 'Failed to set api',
           login: 'Failed to login',
           target: 'Failed to target organization %{organization}, space %{space}',
           push: 'Failed to push app',
           logout: 'Failed to logout'

      def install
        shell :install
      end

      def login
        shell :api
        shell :login
      end

      def deploy
        shell :push
      end

      def finish
        shell :logout if logout?
      end

      private

      def url
        API
      end

      def args
        args = []
        args << quote(app_name)  if app_name?
        args << "-f #{manifest}" if manifest?
        args.join(' ')
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
dpl-2.0.5.2.beta.1 lib/dpl/providers/anynines.rb
dpl-2.0.5.1 lib/dpl/providers/anynines.rb
dpl-2.0.5.beta.2.1 lib/dpl/providers/anynines.rb
dpl-2.0.5.beta.2 lib/dpl/providers/anynines.rb
dpl-2.0.5 lib/dpl/providers/anynines.rb
dpl-2.0.5.beta.1 lib/dpl/providers/anynines.rb
dpl-2.0.5.beta lib/dpl/providers/anynines.rb
travis_dpl_test-2.0.3.beta.4.ror.1 lib/dpl/providers/anynines.rb
travis_dpl_test-2.0.3.beta.4.ror lib/dpl/providers/anynines.rb