1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/google
Ferran Rodenas b4fecc3e0a [google|compute] Enable passing the google key as a String
Google::APIClient::KeyUtils.load_from_pkcs12 allows passing the contents
of the PKCS12 key as a String instead of the PKCS12 file location.

Adding a new initialize param (google_key_string) to enable the
automation on those environments where you can not pass a file.
2014-04-25 16:05:52 -07:00
..
examples Merge remote-tracking branch 'fog/master' 2014-04-07 09:29:05 -07:00
models [google|compute] Improve Server support 2014-04-24 09:45:44 -07:00
parsers/storage Make public_url function easier to read and change acl request to deal with nokogiri changes. 2013-08-02 17:43:16 -07:00
requests [google|compute] Improve Server support 2014-04-24 09:45:44 -07:00
compute.rb [google|compute] Enable passing the google key as a String 2014-04-25 16:05:52 -07:00
core.rb Require json or xml in provider cores 2014-02-19 14:58:00 +00:00
Rakefile A set of smoke tests for GCE. 2013-07-24 18:46:20 -07:00
README.md [google|compute] Add Projects support 2014-04-09 17:53:38 -07:00
storage.rb Enabled :path_style for Google Cloud Storage for allowing CNAME buckets 2014-04-20 00:59:01 +02:00

Fog with Google

Fog currently supports two Google Cloud services: Google Compute Engine and Google Cloud Storage. The main maintainer for the Google sections is @icco.

Storage

Google Cloud Storage originally was very similar to Amazon's S3. Because of this, Fog implements the XML GCS API. We eventually want to move to the new JSON API, once it has similar performance characteristics to the XML API. If this migration interests you, send us a pull request!

Compute

Google Compute Engine is a Virtual Machine hosting service. Currently it is built on version v1 of the GCE API.

Our implementation of the API currently supports

  • Server creation, deletion and bootstrapping
  • Persistent Disk creation and deletion
  • Image lookup
  • Network and Firewall configuration
  • Operations
  • Snapshots
  • Instance Metadata
  • Project Metadata

Features we are looking forward to implementing in the future:

  • Image creation
  • Load balancer configuration

If you are using Fog to interact with GCE, please keep Fog up to date and file issues for any anomalies you see or features you would like.

Thanks!