~james-page/charms/precise/glance/unit-test-part2

« back to all changes in this revision

Viewing changes to config.yaml

  • Committer: Adam Gandelman
  • Date: 2013-06-03 19:36:04 UTC
  • mfrom: (29.2.24 glance)
  • Revision ID: adamg@canonical.com-20130603193604-qifjku19lcizq63o
Merge Grizzly updates + HA support work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
    default: glance
23
23
    type: string
24
24
    description: Glance database name.
 
25
  region:
 
26
    default: RegionOne
 
27
    type: string
 
28
    description: OpenStack Region
 
29
  # HA configuration settings
 
30
  vip:
 
31
    type: string
 
32
    description: "Virtual IP to use to front Glance API in ha configuration"
 
33
  vip_iface:
 
34
    type: string
 
35
    default: eth0
 
36
    description: "Network Interface where to place the Virtual IP"
 
37
  vip_cidr:
 
38
    type: int
 
39
    default: 24
 
40
    description: "Netmask that will be used for the Virtual IP"
 
41
  ha-bindiface:
 
42
    type: string
 
43
    default: eth0
 
44
    description: |
 
45
      Default network interface on which HA cluster will bind to communication
 
46
      with the other members of the HA Cluster.
 
47
  ha-mcastport:
 
48
    type: int
 
49
    default: 5402
 
50
    description: |
 
51
      Default multicast port number that will be used to communicate between
 
52
      HA Cluster nodes.
 
53
  ssl_cert:
 
54
    type: string
 
55
    description: |
 
56
      SSL certificate to install and use for API ports.  Setting this value
 
57
      and ssl_key will enable reverse proxying, point Glance's entry in the
 
58
      Keystone catalog to use https, and override any certficiate and key
 
59
      issued by Keystone (if it is configured to do so).
 
60
  ssl_key:
 
61
    type: string
 
62
    description: SSL key to use with certificate specified as ssl_cert.