Sync charmhelpers
Refresh charmhelpers with the latest Flamingo/Gazpacho version metadata.
Change-Id: I4dd18f62013a2227b40b5e5db22af39cb59a8b4d Signed-off-by: Myles Penner myles.penner@canonical.com
版权所有:中国计算机学会技术支持:开源发展技术委员会
京ICP备13000930号-9
京公网安备 11010802032778号
Overview
The glance charm deploys Glance, the core OpenStack service that acts as the central repository for virtual machine (VM) images. The charm works alongside other Juju-deployed OpenStack services.
Usage
Configuration
This section covers common and/or important configuration options. See file
config.yamlfor the full list of options, along with their descriptions and default values. See the Juju documentation for details on configuring applications.openstack-originThe
openstack-originoption states the software sources. A common value is an OpenStack UCA release (e.g. ‘cloud:bionic-ussuri’ or ‘cloud:focal-victoria’). See Ubuntu Cloud Archive. The underlying host’s existing apt sources will be used if this option is not specified (this behaviour can be explicitly chosen by using the value of ‘distro’).pool-typeThe
pool-typeoption dictates the Ceph storage pool type. See sections ‘Ceph pool type’ and ‘Ceph backed storage’ for more information.Deployment
This section includes five different deployment scenarios (with their respective backends). Each scenario requires these applications to be present: keystone, nova-cloud-controller, nova-compute, and a cloud database.
Ceph-backed storage
Ceph is the recommended storage backend solution for Glance. The steps below assume a pre-existing Ceph cluster (see the ceph-mon and ceph-osd charms).
Here, Glance is deployed to a new container on machine ‘1’ and related to the Ceph cluster via the ceph-mon charm:
Proceed with a group of commands common to all four scenarios:
This configuration can be used to support Glance in HA/scale-out deployments.
Object storage-backed storage
Glance can use Object storage as its storage backend. OpenStack Swift, Ceph RADOS Gateway, and external S3 are supported, and all resulting configurations can be used to support Glance in HA/scale-out deployments.
Swift
The steps below assume a pre-existing Swift deployment (see the swift-proxy and swift-storage charms).
Here, Glance is deployed to a new container on machine ‘1’ and related to Swift via the swift-proxy charm:
Proceed with the common group of commands from the Ceph scenario.
Ceph RADOS Gateway
The steps below assume a pre-existing Ceph RADOS Gateway deployment (see the ceph-radosgw charm).
Here, Glance is deployed to a new container on machine ‘1’ and related to the ceph-radosgw application:
Proceed with the common group of commands from the Ceph scenario.
External S3
The step below assumes an external and pre-existing S3 compatible server available.
S3 server information can be passed via charm config options:
Cinder LVM-backed storage
Glance can also use Cinder LVM-backed storage as its storage backend, the configuration option cinder-volume-types can be used to specify the volume types in Cinder. The steps below assume a pre-existing Cinder LVM-backed deployment (see the cinder and cinder-lvm charms).
Here, Glance is deployed to machine ‘1’ and related to Cinder:
Proceed with the common group of commands from the Ceph scenario.
Local storage
Glance can simply use the storage available on the application unit’s machine to store image data. Here, Glance is deployed to a new container on machine ‘1’:
Proceed with the common group of commands from the Ceph scenario.
Multiple backends
Multiple storage backend support allows for one backend of each type:
With multiple backends configured, the cloud operator can specify, at image upload time, which backend will be used to store the image. This is done by using the
--storeoption to theglanceCLI client:The default order of precedence is given by the following backend names: ‘ceph’, ‘swift’, ‘s3’, ‘cinder’, and then ‘local’.
Actions
This section covers Juju actions supported by the charm. Actions allow specific operations to be performed on a per-unit basis. To display action descriptions run
juju actions --schema glance. If the charm is not deployed then see fileactions.yaml.openstack-upgradepauseresumesecurity-checklistCeph pool type
Ceph storage pools can be configured to ensure data resiliency either through replication or by erasure coding. This charm supports both types via the
pool-typeconfiguration option, which can take on the values of ‘replicated’ and ‘erasure-coded’. The default value is ‘replicated’.For this charm, the pool type will be associated with Glance images.
Replicated pools
Replicated pools use a simple replication strategy in which each written object is copied, in full, to multiple OSDs within the cluster.
The
ceph-osd-replication-countoption sets the replica count for any object stored within the ‘glance’ rbd pool. Increasing this value increases data resilience at the cost of consuming more real storage in the Ceph cluster. The default value is ‘3’.Erasure coded pools
Erasure coded pools use a technique that allows for the same resiliency as replicated pools, yet reduces the amount of space required. Written data is split into data chunks and error correction chunks, which are both distributed throughout the cluster.
When using erasure coded pools for Glance images two pools will be created: a replicated pool (for storing RBD metadata) and an erasure coded pool (for storing the data written into the RBD). The
ceph-osd-replication-countconfiguration option only applies to the metadata (replicated) pool.Erasure coded pools can be configured via options whose names begin with the
ec-prefix.See Ceph Erasure Coding in the OpenStack Charms Deployment Guide for more information.
Ceph BlueStore compression
This charm supports BlueStore inline compression for its associated Ceph storage pool(s). The feature is enabled by assigning a compression mode via the
bluestore-compression-modeconfiguration option. The default behaviour is to disable compression.The efficiency of compression depends heavily on what type of data is stored in the pool and the charm provides a set of configuration options to fine tune the compression behaviour.
High availability
When more than one unit is deployed with the hacluster application the charm will bring up an HA active/active cluster.
There are two mutually exclusive high availability options: using virtual IP(s) or DNS. In both cases the hacluster subordinate charm is used to provide the Corosync and Pacemaker backend HA functionality.
See OpenStack high availability in the OpenStack Charms Deployment Guide for details.
Glance metering
Glance metering can be achieved with Ceilometer. The rabbitmq-server and ceilometer-agent applications are required to be present.
Assuming Glance is deployed, add two relations:
Network spaces
This charm supports the use of Juju network spaces. This feature optionally allows specific types of the application’s network traffic to be bound to subnets that the underlying hardware is connected to.
API endpoints can be bound to distinct network spaces supporting the network separation of public, internal and admin endpoints.
Glance acts as a Ceph client and needs IP connectivity to Ceph monitors and OSDs. Binding the ceph endpoint to a space can solve this problem in case monitors and OSDs are located on a single L2 broadcast domain (if they are not, static or dynamic routes need to be used in addition to spaces).
Access to the underlying MySQL instance can also be bound to a specific space using the shared-db relation.
To use this feature, use the –bind option when deploying the charm:
Alternatively, these can also be provided as part of a juju native bundle configuration:
Policy overrides
Policy overrides is an advanced feature that allows an operator to override the default policy of an OpenStack service. The policies that the service supports, the defaults it implements in its code, and the defaults that a charm may include should all be clearly understood before proceeding.
Policy statements are placed in a YAML file. This file (or files) is then (ZIP) compressed into a single file and used as an application resource. The override is then enabled via a Boolean charm option.
Here are the essential commands (filenames are arbitrary):
See Policy overrides in the OpenStack Charms Deployment Guide for a thorough treatment of this feature.
Documentation
The OpenStack Charms project maintains two documentation guides:
Bugs
Please report bugs on Launchpad.