Sha256: fcc94868bff559263e7c83ad755a81c0400311fe7a7eba6364405045b1abf0c4
Contents?: true
Size: 549 Bytes
Versions: 25
Compression:
Stored size: 549 Bytes
Contents
# Initialiser for getting vCloud credentials into Fog from Jenkins build # parameters, without needing to write them to disk. To be used with: # # RUBYOPT="-r ./tools/fog_credentials" bundle exec integration # # Replace with FOG_VCLOUD_TOKEN support when we have a tool: # # https://www.pivotaltracker.com/story/show/68989754 # require 'bundler/setup' require 'fog' Fog.credentials = { :vcloud_director_host => ENV['API_HOST'], :vcloud_director_username => ENV['API_USERNAME'], :vcloud_director_password => ENV['API_PASSWORD'], }
Version data entries
25 entries across 25 versions & 5 rubygems