(POOLER-70) Add initial VSphere VM Provider

This commit adds a skeleton VM Provider for VSphere based VM operations.
This commit is contained in:
Glenn Sarti 2017-03-02 15:56:34 -08:00
parent ac8a34de86
commit c724d90d90
2 changed files with 106 additions and 0 deletions

View file

@ -0,0 +1,17 @@
module Vmpooler
class PoolManager
class Provider
class VSphere < Vmpooler::PoolManager::Provider::Base
def initialize(options)
super(options)
end
def name
'vsphere'
end
end
end
end
end