Class: Dpl::Providers::Hephy
Constant Summary
collapse
- INSTALL =
'https://raw.githubusercontent.com/teamhephy/workflow-cli/master/install-v2.sh'
Dpl::Provider::FOLDS, Dpl::Provider::STAGES
Instance Attribute Summary
#key_name, #repo_name
Instance Method Summary
collapse
#before_finish, #before_init, #before_install, #before_prepare, #before_setup, #chmod, #cleanup, #cmd, #compact, #err, #error, #escape, examples, #expand, #file?, #finish?, #fold, #fold?, #info, #initialize, install_deps, install_deps?, #mkdir_p, move_files, #msg, #mv, #only, #open, #opt_for, #opt_key, #opts_for, #print, #quote, #read, #remove_dpl_dir, #rm_rf, #run, #run_cmds, #run_stage, #run_stage?, #script, #setup_dpl_dir, #setup_git_config, #setup_git_http_user_agent, #setup_git_ssh, #setup_ssh_key, #shell, #sq, #ssh_keygen, #symbolize, #try_ssh_access, #uncleanup, unmove_files, validate_runtimes, #wait_for_ssh_access, #warn
#apt, #apt?, #cmds, #description, #env, #errs, #full_name, #gem, #gem?, #keep, #move, #msgs, #needs, #needs?, #node_js, #npm, #npm?, #opt, #path, #pip, #pip?, #python, #ruby_pre?, #ruby_version, #runtimes, #status, #strs, #summary, #user_agent, #vars
Methods included from Squiggle
#sq
Methods included from Assets
#asset
Methods included from Env
included, #opts
Methods included from ConfigFile
included, #opts
#interpolate, #obfuscate, #vars
Methods included from Memoize
included
Constructor Details
This class inherits a constructor from Dpl::Provider
Instance Method Details
#add_key(key) ⇒ Object
55
56
57
58
|
# File 'lib/dpl/providers/hephy.rb', line 55
def add_key(key)
shell(:add_key, key:)
wait_for_ssh_access(host, port)
end
|
#builder ⇒ Object
92
93
94
95
96
|
# File 'lib/dpl/providers/hephy.rb', line 92
def builder
parts = host.split('.')
parts[0] = [parts[0], 'builder'].join('-')
parts.join('.')
end
|
#deploy ⇒ Object
64
65
66
|
# File 'lib/dpl/providers/hephy.rb', line 64
def deploy
shell :deploy
end
|
#host ⇒ Object
80
81
82
|
# File 'lib/dpl/providers/hephy.rb', line 80
def host
url.host
end
|
#install ⇒ Object
43
44
45
|
# File 'lib/dpl/providers/hephy.rb', line 43
def install
shell :install
end
|
#install_hephy_log_filter ⇒ Object
102
103
104
|
# File 'lib/dpl/providers/hephy.rb', line 102
def install_hephy_log_filter
asset(:filter_log).copy('~/.dpl/')
end
|
#login ⇒ Object
51
52
53
|
# File 'lib/dpl/providers/hephy.rb', line 51
def login
shell :login
end
|
#port ⇒ Object
84
85
86
|
# File 'lib/dpl/providers/hephy.rb', line 84
def port
url.port
end
|
#remove_key ⇒ Object
72
73
74
|
# File 'lib/dpl/providers/hephy.rb', line 72
def remove_key
shell :remove_key
end
|
#run_cmd(cmd) ⇒ Object
68
69
70
|
# File 'lib/dpl/providers/hephy.rb', line 68
def run_cmd(cmd)
shell :run, app:, cmd:
end
|
#setup ⇒ Object
47
48
49
|
# File 'lib/dpl/providers/hephy.rb', line 47
def setup
install_hephy_log_filter
end
|
#url ⇒ Object
88
89
90
|
# File 'lib/dpl/providers/hephy.rb', line 88
def url
@url ||= URI.parse("ssh://git@#{builder}:2222/#{app}.git")
end
|
#validate ⇒ Object
60
61
62
|
# File 'lib/dpl/providers/hephy.rb', line 60
def validate
shell :validate
end
|
#verbose ⇒ Object
76
77
78
|
# File 'lib/dpl/providers/hephy.rb', line 76
def verbose
verbose? ? '-v' : ''
end
|