2014-02-28 16:43:35 +00:00
|
|
|
===========================
|
|
|
|
Getting Started With LXC
|
|
|
|
===========================
|
|
|
|
The LXC module is designed to install a LXC container Salt via a salt master on a
|
|
|
|
controlled and possible remote minion.
|
|
|
|
|
|
|
|
In other words, we connect to a minion, then from that minion:
|
2014-03-17 22:17:18 +00:00
|
|
|
|
|
|
|
- we provision and configure a container for networking access
|
|
|
|
- We use saltify to deploy salt and rattach to master
|
2014-02-28 16:43:35 +00:00
|
|
|
|
|
|
|
Limitation
|
|
|
|
------------
|
|
|
|
- You can only act on one minion and one provider at a time.
|
|
|
|
- Listing images must be targeted to a particular driver (nothing will be outputted with 'all')
|
|
|
|
|
|
|
|
Operation
|
|
|
|
---------
|
|
|
|
This do not use lxc.init to provide a more generic fashion to tie minions
|
|
|
|
to their master (if any and defined) to allow custom association code.
|
|
|
|
|
2014-03-17 22:17:18 +00:00
|
|
|
Order of operation:
|
2014-02-28 16:43:35 +00:00
|
|
|
|
2014-03-17 22:17:18 +00:00
|
|
|
- Spin up the lxc template container using salt.modules.lxc on desired minion
|
|
|
|
(clone or template)
|
|
|
|
- Change lxc config option if any to be changed
|
|
|
|
- Start container
|
|
|
|
- Change base passwords if any
|
|
|
|
- Change base DNS base configuration if neccessary
|
|
|
|
- Wait for lxc container to be up and ready for ssh
|
|
|
|
- Test ssh connection and bailout in error
|
|
|
|
- Via ssh (with the help of saltify, upload deploy script and seeds and
|
|
|
|
reattach minion.
|
2014-02-28 16:43:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
Provider configuration
|
|
|
|
----------------------
|
|
|
|
Here are the options to configure your containers
|
|
|
|
|
|
|
|
|
|
|
|
Exemple:
|
2014-03-17 22:17:18 +00:00
|
|
|
|
2014-02-28 16:43:35 +00:00
|
|
|
.. code-block:: yaml
|
|
|
|
|
|
|
|
# Note: This example is for /etc/salt/cloud.providers or any file in the
|
|
|
|
# /etc/salt/cloud.providers.d/ directory.
|
|
|
|
devhost10-lxc:
|
|
|
|
target: devhost10
|
|
|
|
provider: lxc
|
|
|
|
|
|
|
|
Profile configuration
|
|
|
|
----------------------
|
|
|
|
Here are the options to configure your containers
|
|
|
|
|
|
|
|
target
|
|
|
|
Host minion id to install the lxc Container into
|
|
|
|
profile
|
|
|
|
lxc pillar profile
|
|
|
|
Container creation/clone options
|
|
|
|
Use a container using clone
|
|
|
|
from_container
|
|
|
|
Name of an original container using clone
|
|
|
|
snapshot
|
|
|
|
Do we use snapshots on cloned filesystems
|
|
|
|
lxc template using total creation
|
|
|
|
image
|
|
|
|
template to use
|
|
|
|
backing
|
|
|
|
Backing store type (None, lvm, brtfs)
|
|
|
|
lvname
|
|
|
|
LVM lvname if any
|
|
|
|
fstype
|
|
|
|
fstype
|
|
|
|
size
|
|
|
|
Size of the containera (for brtfs, or lvm)
|
|
|
|
vgname
|
|
|
|
LVM vgname if any
|
|
|
|
users
|
|
|
|
sysadmin users [ubuntu] of the container
|
|
|
|
ssh_username
|
|
|
|
sysadmin ssh_username (ubuntu) of the container
|
|
|
|
sudo
|
|
|
|
Do we use sudo
|
|
|
|
password
|
|
|
|
password for root and sysadmin (ubuntu)
|
|
|
|
mac
|
|
|
|
mac address to associate
|
|
|
|
ip
|
|
|
|
ip to link to
|
|
|
|
netmask
|
|
|
|
netmask for ip
|
|
|
|
bridge
|
|
|
|
bridge to use
|
|
|
|
dnsservers
|
|
|
|
optionnal list of dns servers to use
|
|
|
|
Will be restricted to that list if used
|
|
|
|
lxc_conf_unset
|
|
|
|
Configuration variables to unset in lxc conf
|
|
|
|
lxc_conf
|
|
|
|
LXC configuration variables to set in lxc_conf
|
|
|
|
minion
|
|
|
|
minion configuration (as usual with salt cloud)
|
|
|
|
|
|
|
|
|
|
|
|
.. code-block:: yaml
|
|
|
|
|
|
|
|
# Note: This example is for /etc/salt/cloud.profile or any file in the
|
|
|
|
# /etc/salt/cloud.profile.d/ directory.
|
|
|
|
devhost10-lxc:
|
|
|
|
provider: devhost10-lxc
|
|
|
|
from_container: ubuntu
|
|
|
|
backing: lvm
|
|
|
|
sudo: True
|
|
|
|
size: 3g
|
|
|
|
ip: 10.0.3.9
|
|
|
|
minion:
|
|
|
|
master: 10.5.0.1
|
|
|
|
master_port: 4506
|
|
|
|
lxc_conf:
|
|
|
|
- lxc.utsname: superlxc
|
|
|
|
|
|
|
|
The driver support
|
|
|
|
------------------
|
|
|
|
- Container creation
|
|
|
|
- Image listing (lxc templates)
|
2014-03-17 22:17:18 +00:00
|
|
|
- Running container informations (ips, etc)
|