~openstack-charmers-archive/charms/trusty/cinder/trunk

« back to all changes in this revision

Viewing changes to config.yaml

  • Committer: Liam Young
  • Date: 2014-07-28 10:32:01 UTC
  • mfrom: (38.1.27 cinder)
  • Revision ID: liam.young@canonical.com-20140728103201-12qlxvtqtxkutb11
[jamespage, r=gnuoy] Add support for multiple network configuration.

Show diffs side-by-side

added added

removed removed

Lines of Context:
102
102
  # HA configuration settings
103
103
  vip:
104
104
    type: string
105
 
    description: "Virtual IP to use to front cinder API in ha configuration"
106
 
  vip_iface:
107
 
    type: string
108
 
    default: eth0
109
 
    description: "Network Interface where to place the Virtual IP"
110
 
  vip_cidr:
111
 
    type: int
112
 
    default: 24
113
 
    description: "Netmask that will be used for the Virtual IP"
 
105
    description: |
 
106
      Virtual IP(s) to use to front API services in HA configuration.
 
107
      .
 
108
      If multiple networks are being used, a VIP should be provided for each
 
109
      network, separated by spaces.
114
110
  ha-bindiface:
115
111
    type: string
116
112
    default: eth0
142
138
  config-flags:
143
139
    type: string
144
140
    description: Comma separated list of key=value config flags to be set in cinder.conf.
 
141
  # Network configuration options
 
142
  # by default all access is over 'private-address'
 
143
  os-admin-network:
 
144
    type: string
 
145
    description: |
 
146
      The IP address and netmask of the OpenStack Admin network (e.g.,
 
147
      192.168.0.0/24)
 
148
      .
 
149
      This network will be used for admin endpoints.
 
150
  os-internal-network:
 
151
    type: string
 
152
    description: |
 
153
      The IP address and netmask of the OpenStack Internal network (e.g.,
 
154
      192.168.0.0/24)
 
155
      .
 
156
      This network will be used for internal endpoints.
 
157
  os-public-network:
 
158
    type: string
 
159
    description: |
 
160
      The IP address and netmask of the OpenStack Public network (e.g.,
 
161
      192.168.0.0/24)
 
162
      .
 
163
      This network will be used for public endpoints.
145
164