RETIRED, Chef Cookbook - OpenStack Image
Go to file
Jens Harbott 457babfd9b Fix Berksfile to request stable/queens branch
We are in the stable/queens branch and need to use the matching
dependencies, otherwise things will fail.

Change-Id: I74864a68e283b78cc9264c17b92512b19ef2ff8a
2019-08-02 20:22:08 +00:00
.delivery Add delivery config 2018-04-11 22:26:21 -07:00
attributes remove unused ceph related attributes 2018-04-05 16:26:11 +02:00
files/default sync with rcbops/master as of f481cd8a322dc21526da3158d957f034a33e51fd 2012-07-26 17:20:29 -05:00
libraries Change image_upload spec to not test the LWRP 2014-06-12 14:49:08 +02:00
providers Use internal identity endpoint for services 2018-07-16 15:18:02 -07:00
recipes Use internal identity endpoint for services 2018-07-16 15:18:02 -07:00
resources image refactor for Pike and Chef 13 2017-12-10 14:37:40 -08:00
spec Simplify identity endpoint 2018-06-14 19:15:20 -07:00
.gitignore Initial kilo updates 2015-02-27 13:38:49 -06:00
.gitreview OpenDev Migration Patch 2019-04-19 19:42:26 +00:00
.rubocop.yml Initial kilo updates 2015-02-27 13:38:49 -06:00
.rubocop_todo.yml Initial image Pike updates 2017-08-25 09:42:35 -04:00
.zuul.yaml Migrate Zuul jobs to openstack/openstack-chef 2018-08-31 23:24:53 -07:00
Berksfile Fix Berksfile to request stable/queens branch 2019-08-02 20:22:08 +00:00
CONTRIBUTING.md Workflow documentation is now in infra-manual 2014-12-05 03:30:44 +00:00
LICENSE image refactor for Pike and Chef 13 2017-12-10 14:37:40 -08:00
README.md add new Chef OpenStack Team Logo to README 2017-05-29 10:53:08 +02:00
Rakefile image refactor for Pike and Chef 13 2017-12-10 14:37:40 -08:00
TESTING.md Sync stackforge/cookbook* to openstack/cookbook* for glance cookbook 2015-06-15 15:21:29 +08:00
bootstrap.sh stable/queens release patch 2018-07-26 20:55:01 -07:00
metadata.rb starting queens development patch and use git.openstack.org 2018-03-06 12:13:20 -08:00

README.md

Team and repository tags

Team and repository tags

Chef OpenStack Logo

Description

This cookbook installs the OpenStack Image service Glance as part of an OpenStack reference deployment Chef for OpenStack. The https://github.com/openstack/openstack-chef-repo contains documentation for using this cookbook in the context of a full OpenStack deployment. Glance is installed from packages, optionally populating the repository with default images.

http://docs.openstack.org/mitaka/config-reference/image-service.html

Requirements

  • Chef 12 or higher
  • chefdk 0.9.0 or later for testing (also includes berkshelf for cookbook dependency resolution)

Platform

  • ubuntu
  • redhat
  • centos

Cookbooks

The following cookbooks are dependencies:

  • 'openstack-common', '>= 14.0.0'
  • 'openstack-identity', '>= 14.0.0'
  • 'openstackclient', '>= 0.1.0'

Attributes

Please see the extensive inline documentation in attributes/*.rb for descriptions of all the settable attributes for this cookbook.

Note that all attributes are in the default['openstack'] "namespace"

The usage of attributes to generate the glance-api.conf glance-registry.conf is decribed in the openstack-common cookbook.

Recipes

openstack-image::api

  • Installs the glance-api server

openstack-image::client

  • Install the glance client packages

openstack-image::identityr_registration

  • Registers the API endpoint and glance service Keystone user

openstack-image::registry

  • Installs the glance-registry server

openstack-image::image-upload

  • Upload image to glance. If you want to upload image during openstack installation, you need to add this recipe or the os-image role to the run list in a certain role and ensure before this recipe or the os-image role glance api and glance registry recipes have been executed.

Glance Backend

The Glance cookbook currently supports file, swift, and Rackspace Cloud Files (swift API compliant) backing stores. NOTE: changing the storage location from cloudfiles to swift (and vice versa) requires that you manually export and import your stored images.

To enable these features set the following in the default attributes section in your environment:

Files

"openstack": {
    "image": {
        "api": {
            "default_store": "file"
        },
        "upload_images": [
            "cirros"
        ]
    }
}

Swift

"openstack": {
    "image": {
        "api": {
            "default_store": "swift"
        },
        "upload_images": [
            "cirros"
        ]
    }
}

Providers

image

Action: :upload

  • :image_url: Location of the image to be loaded into Glance.
  • :image_name: A name for the image.
  • :image_type: unknown, qcow, ami, vhd, vmdk, vdi, iso, raw. Defaults of unknown will use file extension '.gz', '.tgz' = ami, '.qcow2', '.img' = qcow.
  • :identity_user: Username of the Keystone admin user.
  • :identity_pass: Password for the Keystone admin user.
  • :identity_tenant: Name of the Keystone admin user's tenant.
  • :identity_uri: URI of the Identity API endpoint.

For testing this provider with ChefSpec, a custom matcher was added to libraries/matchers.rb.

License and Author

Author Justin Shepherd (justin.shepherd@rackspace.com)
Author Jason Cannavale (jason.cannavale@rackspace.com)
Author Ron Pedde (ron.pedde@rackspace.com)
Author Joseph Breu (joseph.breu@rackspace.com)
Author William Kelly (william.kelly@rackspace.com)
Author Darren Birkett (darren.birkett@rackspace.co.uk)
Author Evan Callicoat (evan.callicoat@rackspace.com)
Author Matt Ray (matt@opscode.com)
Author Jay Pipes (jaypipes@att.com)
Author John Dewey (jdewey@att.com)
Author Craig Tracey (craigtracey@gmail.com)
Author Sean Gallagher (sean.gallagher@att.com)
Author Mark Vanderwiel (vanderwl@us.ibm.com)
Author Salman Baset (sabaset@us.ibm.com)
Author Chen Zhiwei (zhiwchen@cn.ibm.com)
Author Eric Zhou (zyouzhou@cn.ibm.com)
Author Jian Hua Geng (gengjh@cn.ibm.com)
Author Ionut Artarisi (iartarisi@suse.cz)
Author Imtiaz Chowdhury (imtiaz.chowdhury@workday.com)
Author Jan Klare (j.klare@cloudbau.de)
Author Christoph Albers (c.albers@x-ion.de)
Copyright Copyright (c) 2012, Rackspace US, Inc.
Copyright Copyright (c) 2012-2013, Opscode, Inc.
Copyright Copyright (c) 2012-2013, AT&T Services, Inc.
Copyright Copyright (c) 2013, Craig Tracey craigtracey@gmail.com
Copyright Copyright (c) 2013-2014, IBM Corp.
Copyright Copyright (c) 2014, SUSE Linux, GmbH.

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.