Skip to content

nledez/proxmox

Repository files navigation

Proxmox

You need to manage a proxmox host with Ruby? This library is for you.

!!! Warning, it's a experimental version. Some methods could be renamed !!!

Current build: Build Status Coverage Status Dependency Status Code Climate Inline docs

RubyGem

Rubydoc

Inspirated from: https://bitbucket.org/jmoratilla/knife-proxmox/ but I would like to have the same without chef. https://github.com/maxschulze/uv_proxmox but listing some task does not work for me. No tests, use ssh.

Documentation from:

So I start to create one fully tested (TDD method).

Installation

Add this line to your application's Gemfile:

gem 'proxmox'

And then execute:

$ bundle

Or install it yourself as:

$ gem install proxmox

Usage

require 'awesome_print'
require 'proxmox'

def wait_status(server1, task)
  puts task
  while server1.task_status(task) == "running"
    puts '.'
    sleep 1
  end

  puts server1.task_status(task)
end

server1 =
Proxmox::Proxmox.new("https://the-proxmox-server:8006/api2/json/",
"node", "root", "secret", "pam")
ap server1.templates

vm1 = server1.openvz_post("ubuntu-10.04-standard_10.04-4_i386", 200)
wait_status(server1, vm1)

ap server1.openvz_vm_status(200)
vm1 = server1.openvz_vm_start(200)
begin
  wait_status(server1, vm1)
rescue
end
sleep 5
ap server1.openvz_vm_shutdown(200)
begin
  wait_status(server1, vm1)
rescue
end
sleep 5
ap server1.openvz_vm_status(200)

vm1 = server1.openvz_delete(200)
wait_status(server1, vm1)

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Create spec (in file spec/lib/proxmox_spec.rb)
  4. Write your code (in lib/proxmox.rb)
  5. Check spec & coverage (bundle exec rspec or bundle exec guard)
  6. Commit your changes (git commit -am 'Add some feature')
  7. Push to the branch (git push origin my-new-feature)
  8. Create new Pull Request

About

You need to manage a proxmox host with Ruby? This library is for you.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages