mirror of
https://github.com/puppetlabs/vmpooler.git
synced 2026-01-26 01:58:41 -05:00
(POOLER-70) Add initial VSphere VM Provider
This commit adds a skeleton VM Provider for VSphere based VM operations.
This commit is contained in:
parent
ac8a34de86
commit
c724d90d90
2 changed files with 106 additions and 0 deletions
17
lib/vmpooler/providers/vsphere.rb
Normal file
17
lib/vmpooler/providers/vsphere.rb
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue