~ahasenack/charms/precise/swift-storage/use-charm-dir

4 by Adam Gandelman
Added config yamls
1
options:
15.1.2 by Adam Gandelman
Checkin openstack-common library, use it for repo setup.
2
  openstack-origin:
4 by Adam Gandelman
Added config yamls
3
    default: distro
5 by Adam Gandelman
config.yaml: Update use of 'str' to 'string'
4
    type: string
15.1.2 by Adam Gandelman
Checkin openstack-common library, use it for repo setup.
5
    description: |
6
      Repository from which to install.  May be one of the following:
7
      distro (default), ppa:somecustom/ppa, a deb url sources entry,
8
      or a supported Cloud Archive release pocket.
9
      .
10
      Supported Cloud Archive sources include: cloud:precise-folsom,
11
      cloud:precise-folsom/updates, cloud:precise-folsom/staging,
12
      cloud:precise-folsom/proposed.
13
      .
14
      Note that updating this setting to a source that is known to
15
      provide a later version of OpenStack will trigger a software
16
      upgrade.
4 by Adam Gandelman
Added config yamls
17
  block-device:
18
    default: sdb
5 by Adam Gandelman
config.yaml: Update use of 'str' to 'string'
19
    type: string
15.1.5 by Adam Gandelman
Checkin openstack-common.
20
    description: |
21
      Device to be used to back Swift storage.  May be any valid block
22
      device or a path and size to a local file (/path/to/file.img|$sizeG),
23
      which will be created and used as a loopback device (for testing only).
15.1.12 by Adam Gandelman
Add some more to config.yaml wrt block-device setting.
24
      Multiple devices may be specified as a space-separated list of devices.
25
      If set to "guess", the charm will attempt to format and mount all extra
26
      block devices (this is currently experimental and potentially dangerous).
15.1.5 by Adam Gandelman
Checkin openstack-common.
27
  overwrite:
28
    default: "false"
29
    type: string
30
    description: |
31
      If true, charm will attempt to unmount and overwrite existing and in-use
32
      block-devices (WARNING).
33
  zone:
34
    default: 1
35
    type: int
15.1.8 by Adam Gandelman
Add note about zone config option.
36
    description: |
37
      Swift storage zone to request membership.  Relevant only when the
38
      swift-proxy charm has been configured for manual zone assignment
39
      (the default).  This should be changed for every service unit.
15.1.5 by Adam Gandelman
Checkin openstack-common.
40
  object-server-port:
41
    default: 6000
42
    type: int
43
    description: Listening port of the swift-object-server.
44
  container-server-port:
45
    default: 6001
46
    type: int
47
    description: Listening port of the swift-container-server.
48
  account-server-port:
49
    default: 6002
50
    type: int
51
    description: Listening port of the swift-account-server.
15.1.8 by Adam Gandelman
Add note about zone config option.
52