bifrost/playbooks/roles/bifrost-create-dib-image
Julia Kreger a6bdca7083 Make simple-init element perform source-based install
The simple-init element and the program installed by it, glean,
is a fairly new utility and as such it would be best to install
from source to ensure that the latest bug fixes are available.

Change-Id: I4782580735b7ef5451a9913fe71c1b910a7cfd54
2015-07-31 16:40:32 -04:00
..
defaults Make simple-init element perform source-based install 2015-07-31 16:40:32 -04:00
meta Move diskimage-builder and bootable image creation to roles 2015-07-08 12:47:36 -07:00
tasks Generalize the dib builder role 2015-07-22 15:34:51 -07:00
README.md Cleanup use of extra_dib_elements 2015-07-31 16:32:03 +00:00

bifrost-create-dib-image

This role uses diskimage-builder to create a bootable disk image or ramdisk.

Requirements

This role requires:

  • Ansible 1.9

Role Variables

The role can use the disk-image-create or ramdisk-image-create scripts. Which script is used is controlled by the build_ramdisk variable. The default is false.

build_ramdisk: false

The dib_env_vars are settings for the diskimage-builder environment variables which allow settings to be passed to elements that are being utilized to build a disk image. More information on diskimage-builder can be found at: http://git.openstack.org/cgit/openstack/diskimage-builder/

dib_env_vars: DIB_CLOUD_INIT_DATASOURCES: "ConfigDrive" ELEMENTS_PATH: "/opt/stack/diskimage-builder/elements"

http_boot_folder, deploy_image_filename, and deploy_image all control the final destination of the built image.

http_boot_folder: /httpboot deploy_image_filename: "deployment_image.qcow2" deploy_image: "{{http_boot_folder}}/{{deploy_image_filename}}"

dib_os_element controls which OS will be used to build the image.

dib_os_element: "ubuntu"

Dependencies

dib-utils must be installed from pip for the image creation to work.

Example Playbook

  • hosts: localhost connection: local name: "Build DIB image" sudo: yes gather_facts: yes roles:
    • role: bifrost-create-dib-image

License

Copyright (c) 2015 Hewlett-Packard Development Company, L.P.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Author Information