Sam Betts b54ed69b1c Break systemd unit dependency cycle
By default systemd adds an implict dependency on basic.target, which on
some systems (Ubuntu 16) is an example, that depends on network.target
which is after network-pre.target. This results in a dependency cycle
and results in no glean unit's getting run.

Change-Id: I904f69163a77fa5ee26f702628f4be5fcebbed64
2017-11-29 10:46:41 +00:00
2015-12-15 12:57:57 +11:00
2017-11-29 10:46:41 +00:00
2015-03-02 19:05:03 -05:00
2015-03-02 19:05:03 -05:00
2015-03-02 19:05:03 -05:00
2015-03-02 19:05:03 -05:00
2017-02-07 08:11:32 +07:00
2017-02-07 08:11:32 +07:00

glean

Glean is a program intended to configure a system based on configuration provided in a configuration drive.

Why would you want glean?

Different cloud providers have different ways of providing networking and other configuration to guest virtual-machines. Many use DHCP but others, notably Rackspace, use configuration provided via a configuration drive.

What does glean do?

Broadly, glean checks for configuration drive based information and, if found, uses that to configure the network. If config-drive is not found, it falls back to configuring any available interfaces with DHCP.

Specifically, it will mount the special block-device with label config-2 and parse the network_info.json and vendor_info.json files within. If appropriate network configuration is found, it will write out network configuration files.

The format of the network_info.json file is documented here. Please note that glean does not implement every feature listed.

If no network info is found there, available interfaces can be probed from /sys/class/net and any that appear to be up will be configured for use with DHCP.

It will also handle authorized_keys and host-name info provided from meta_data.json.

How does glean do this?

systemd environment

glean install will add a udev rules file (99-glean.rules) that triggers on any network device being added. This will run the glean@.service systemd template for the interface specified.

This systemd unit firstly determines if there is already a /etc/sysconfig/network/ configuration for the interface; if so, the interface is considered configured and skipped.

If not, glean is started with the interface specified. The configuration drive is probed to see if network configuration for the interface is available. If so, it will be added, otherwise the interface will configured for DHCP.

glean uses the network init scripts service network.service on RedHat platforms (or the equivalent on other platforms). You should ensure this service is enabled and other tools such as NetworkManager are disabled for correct operation.

How do I use glean?

Glean ships glean-install, a script which install glean into your system startup environment. It should handle sysv, upstart and systemd to cover all major distributions. This should be run once, during install or image build.

The startup environment will be modified as described above to configure any found interfaces.

Differences to cloud-init?

Glean differs to cloud-init mainly in its very reduced dependency footprint. In a dynamic CI environment such as OpenStack, many of the python dependencies for cloud-init can cause conflicts with packages or versions required for testing.

Glean also better supports static IP allocation within config-drive, particuarly important within the Rackspace environment.

More details

Description
Simple program to write static config from config-drive
Readme 2.9 MiB
Languages
Python 96.6%
Shell 3.4%