翻译于 2013/11/23 15:18
1 人 顶 此译文
CloudStack has its own API. Cloud wrappers like libcloud and jclouds work well with this native API, but CloudStack does not expose any standard API like OCCI and CIMI. We (Isaac Chiang really, I just tested and pointed him in the right direction) started working on a CloudStack backend for rOCCI using our CloudStack ruby gem. The choice of rOCCI was made due to the existence of an existing Opennebula backend and the adoption of OCCI in the European Grid Initiative Federated cloud testbed.
Let's get started with installing the rOCCI server, this work has not yet been merged upstream so you will need to work from Isaac Chiang's fork.
git clone https://github.com/isaacchiang/rOCCI-server.git bundle install cd etc/backend cp cloudstack/cloudstack.json default.json
CloudStack有它自己的 API。像libcloud和 jclouds之类的 Cloud封装器与这个原生的API协作的很好,但是 CloudStack并没有像OCCI 与 CIMI 那样暴露出任何标准的API 。我们 (事实上就是Isaac Chiang ,我刚刚验证过并给他指出了正确的方向) 开始用我们的CloudStack ruby gem (译注:gem是一种文件组织的包,一般ruby的很多插件都由各种这样的包提供。)来做一个CloudStack 后端的 rOCCI 。之所以选择 rOCCI是因为现存的 Opennebula后端(译注:OpenNebula是开放原码的虚拟基础设备引擎,它用来动态布署虚拟机器在一群实体资源上,OpenNebula最大的特色在于将虚拟平台从单一实体机器到一群实体资源。)以及欧洲电网计划联合云测试平台采用了 OCCI 。
我们先来安装 rOCCI服务器,这项工作还没有合并到上层,所以你需要从 Isaac Chiang的分支(fork)开始工作。
git clone https://github.com/isaacchiang/rOCCI-server.git bundle install cd etc/backend cp cloudstack/cloudstack.json default.json
bundle exec passenger start
The server should be running on http://0.0.0.0:3000 and run the tests:
bundle exec rspec
This was tested with the CloudStack simulator and a basic zone configuration, help us test it in production clouds.
You can also try an OCCI client. Install the rOCCI client from Github:
git clone https://github.com/gwdg/rOCCI-cli.git cd rOCCI-cli gem install bundler bundle install bundle exec rake test rake install
You will then be able to use the OCCI client:
occi --help
bundle exec passenger start
服务器将运行在 http://0.0.0.0:3000 ,接着运行以下测试:
bundle exec rspec
这已经在CloudStack模拟器上以一个基本区域配置测试过了,请帮我们在生产云环境下再测试它。
你也可以试着用OCCI客户端。可以从Github安装这个rOCCI 客户端 :
git clone https://github.com/gwdg/rOCCI-cli.git cd rOCCI-cli gem install bundler bundle install bundle exec rake test rake install
这样你就可以使用这个 OCCI客户端了:
occi --help
$ occi --endpoint http://0.0.0.0:3000/ --action list --resource os_tpl Os_tpl locations: os_tpl#6673855d-ce9b-4997-8613-6830de037a8f $ occi --endpoint http://0.0.0.0:3000/ --action list --resource resource_tpl Resource_tpl locations: resource_tpl##08ba0343-bd39-4bf0-9aab-4953694ae2b4 resource_tpl##f78769bd-95ea-4139-ad9b-9dfc1c5cb673 resource_tpl##0fd364a9-7e33-4375-9e10-bb861f7c6ee7
You will recognize the `uuid` from the templates and service offerings that you have created in CloudStack. To start an instance:
$ occi --endpoint http://0.0.0.0:3000/ --action create --resource compute --mixin os_tpl#6673855d-ce9b-4997-8613-6830de037a8f --mixin resource_tpl#08ba0343-bd39-4bf0-9aab-4953694ae2b4 --resource-title foobar
A handle on the resource created will be returned. That's it !
针对你之前启动的服务器来测试它。你需要一个运行中的CloudStack云。或者是一个生产云,或者是使用DevCloud的一个开发实例。这个云的凭证和端点应该已经输入在`default.json`文件中了,也就是你在前面部分所创建的那个文件。现在来测试几个OCCI客户端命令:
$ occi --endpoint http://0.0.0.0:3000/ --action list --resource os_tpl Os_tpl locations: os_tpl#6673855d-ce9b-4997-8613-6830de037a8f $ occi --endpoint http://0.0.0.0:3000/ --action list --resource resource_tpl Resource_tpl locations: resource_tpl##08ba0343-bd39-4bf0-9aab-4953694ae2b4 resource_tpl##f78769bd-95ea-4139-ad9b-9dfc1c5cb673 resource_tpl##0fd364a9-7e33-4375-9e10-bb861f7c6ee7
你可以从模版中识别出`uuid`,还有你在CloudStack中创建的服务产品。若要启动一个实例的话,只需:
$ occi --endpoint http://0.0.0.0:3000/ --action create --resource compute --mixin os_tpl#6673855d-ce9b-4997-8613-6830de037a8f --mixin resource_tpl#08ba0343-bd39-4bf0-9aab-4953694ae2b4 --resource-title foobar
这样将会返回一个创建在这个资源之上的句柄。这样就完成了!
We will keep on improving this driver to provide a production quality OCCI interface to users who want to use a standard. In all fairness we will also work on a CIMI implementation. Hopefully some of the clouds in the EGI federated cloud will pick CloudStack and help us improve this OCCI interface. In CloudStack we aim to provide the interfaces that the users want and keep them up to date and of production quality so that users can depend on it.