Class: DPL::Provider::CloudFoundry

Inherits:
DPL::Provider show all
Defined in:
lib/dpl/provider/cloud_foundry.rb

Direct Known Subclasses

Anynines

Instance Attribute Summary

Attributes inherited from DPL::Provider

#context, #options

Instance Method Summary collapse

Methods inherited from DPL::Provider

apt_get, #commit_msg, context, #create_key, #deploy, #detect_encoding?, #encoding_for, #error, experimental, #initialize, #log, new, npm_g, #option, pip, requires, #run, #setup_git_credentials, #setup_git_ssh, #sha, shell, #user_agent, #warn

Constructor Details

This class inherits a constructor from DPL::Provider

Instance Method Details

#check_appObject



16
17
18
19
20
# File 'lib/dpl/provider/cloud_foundry.rb', line 16

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

#check_authObject



10
11
12
13
14
# File 'lib/dpl/provider/cloud_foundry.rb', line 10

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

#cleanupObject



31
32
# File 'lib/dpl/provider/cloud_foundry.rb', line 31

def cleanup
end

#initial_go_tools_installObject



5
6
7
8
# File 'lib/dpl/provider/cloud_foundry.rb', line 5

def initial_go_tools_install
  context.shell 'wget http://go-cli.s3-website-us-east-1.amazonaws.com/releases/latest/cf-cli_amd64.deb -qO temp.deb && sudo dpkg -i temp.deb'
  context.shell 'rm temp.deb'
end

#manifestObject



37
38
39
# File 'lib/dpl/provider/cloud_foundry.rb', line 37

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

#needs_key?Boolean

Returns:

  • (Boolean)


22
23
24
# File 'lib/dpl/provider/cloud_foundry.rb', line 22

def needs_key?
  false
end

#push_appObject



26
27
28
29
# File 'lib/dpl/provider/cloud_foundry.rb', line 26

def push_app
  context.shell "cf push#{manifest}"
  context.shell "cf logout"
end

#uncleanupObject



34
35
# File 'lib/dpl/provider/cloud_foundry.rb', line 34

def uncleanup
end