~james-page/charms/precise/cinder/pre-test

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
options:
    openstack-origin:
        default: distro
        type: string
        description: |
          Repository from which to install.  May be one of the following:
          distro (default), ppa:somecustom/ppa, a deb url sources entry,
          or a supported Cloud Archive release pocket.

          Supported Cloud Archive sources include: cloud:precise-folsom,
          cloud:precise-folsom/updates, cloud:precise-folsom/staging,
          cloud:precise-folsom/proposed.

          When deploying to Precise, the default distro option will use
          the cloud:precise-folsom/updates repository instead, since Cinder
          was not available in the Ubuntu archive for Precise and is only
          available via the Ubuntu Cloud Archive.
    enabled-services:
        default: all
        type: string
        description: |
            If splitting cinder services between units, define which services
            to install and configure.
    block-device:
        default: sdb
        type: string
        description: |
            The *available* block device on which to create LVM volume group.
            May also be set to None for deployments that will not need local
            storage (eg, Ceph/RBD-backed volumes).
    volume-group:
        default: cinder-volumes
        type: string
        description: Name of volume group to create and store Cinder volumes.
    overwrite:
        default: "false"
        type: string
        description: |
            If true, charm will attempt to overwrite block devices containin
            previous filesystems or LVM, assuming it is not in use.
    db-user:
        default: cinder
        type: string
        description: Username to request database access.
    cinder-db:
        default: cinder
        type: string
        description: Database to request access.
    rabbit-user:
        default: cinder
        type: string
        description: Username to request access on rabbitmq-server.
    rabbit-vhost:
        default: cinder
        type: string
        description: RabbitMQ virtual host to request access on rabbitmq-server.
    api-listening-port:
        default: 8776
        type: int
        description: OpenStack Volume API listening port.