A Virtuozzo driver for Test Kitchen
This driver works via ssh or directly executes command. So you need to have ssh access via keys on the server, where container will be started. Also you need to have sudo permissions for your user to run prlctl
and vzctl
commands.
This driver tested only on Virtuozzo 7.
Please read the Test Kitchen docs for more details.
Example .kitchen.local.yml
:
---
driver:
name: vz
platforms:
- name: centos-7
driver:
socket: ssh://[email protected]
suites:
- name: default
Attribute | Description | Default value |
---|---|---|
:socket | Connection string to virtuozzo server. Supports ssh uri or local . local means what prlctl and vzctl will be started locally. |
'local' |
:username | User with this name will be created in virtuozzo container. Test kitchen uses this user to connect to the container. | 'kitchen' |
:arch | Container architecture. This attribute shows how architecture container will be created. | 'x86_64' |
:network | Hash with network configuration. See section Network configuration. | 'Bridged' => {dhcp: true} |
:customize | Hash with container settings. It may contain :memory, :disk and :cpus options. | memory: '512M', disk: '10G', cpus: 2 |
:private_key | Path to private key. This key pair used by the kitchen to login into container. | .kitchen/kitchen_id_rsa |
:public_key | Path to public key. This key pair used by the kitchen to login into container. | .kitchen/kitchen_id_rsa.pub |
:use_agent_forwarding | Set agent forwarding option into container. | 'False' |
:ostemplate | Virtuozzo template which will be used for container creating. | |
:use_sudo | It shows will sudo be used or not. | true |
:additional_options | Array with prlctl set options, which will be pass as is. Example: ["--features nfs:on"] |
[] |
:ct_hostname | Container hostname. | It is formed from platform name and suite name. |
Example of network settings:
{
'Bridged' => {
dhcp: true
},
'Host-Only' => {
ip: '192.168.75.1/24'
},
'PUB' => {
ip: '10.10.10.20/24'
gw: '10.10.10.1'
}
}
The key of hash is a name of Virtuozzo network. Container interface will be bridged with this network. Value is a hash, which may contains next keys:
- dhcp - If this parameter is true, then network settings will be get from dhcp server.
- ip - IP-address which will be set to container. The address must be specified with the mask. Ex: 192.168.5.3/24
- gw - Gateway which will be set to container.
- Source hosted at GitHub
- Report issues/questions/feature requests on GitHub Issues
Pull requests are very welcome! Make sure your patches are well tested. Ideally create a topic branch for every separate change you make. For example:
- Fork the repo
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
Created and maintained by Pavel Yudin ([email protected])
Apache 2.0 (see LICENSE)