~smukkamala/charms/trusty/nova-cloud-controller/next

« back to all changes in this revision

Viewing changes to config.yaml

  • Committer: Liam Young
  • Date: 2014-07-29 07:11:35 UTC
  • mfrom: (81.3.17 nova-cloud-controller)
  • Revision ID: liam.young@canonical.com-20140729071135-47yjawjgng3wqhdg
[jamespage,r=gnuoy] Add support for multiple network configuration.

Show diffs side-by-side

added added

removed removed

Lines of Context:
97
97
  # HA configuration settings
98
98
  vip:
99
99
    type: string
100
 
    description: "Virtual IP to use to front API services in ha configuration"
101
 
  vip_iface:
102
 
    type: string
103
 
    default: eth0
104
 
    description: "Network Interface where to place the Virtual IP"
105
 
  vip_cidr:
106
 
    type: int
107
 
    default: 24
108
 
    description: "Netmask that will be used for the Virtual IP"
 
100
    description: |
 
101
      Virtual IP(s) to use to front API services in HA configuration.
 
102
      .
 
103
      If multiple networks are being used, a VIP should be provided for each
 
104
      network, separated by spaces.
109
105
  ha-bindiface:
110
106
    type: string
111
107
    default: eth0
165
161
    description: |
166
162
      This is uuid of the default NVP/NSX L3 Gateway Service.
167
163
  # end of NVP/NSX configuration
 
164
  # Network configuration options
 
165
  # by default all access is over 'private-address'
 
166
  os-admin-network:
 
167
    type: string
 
168
    description: |
 
169
      The IP address and netmask of the OpenStack Admin network (e.g.,
 
170
      192.168.0.0/24)
 
171
      .
 
172
      This network will be used for admin endpoints.
 
173
  os-internal-network:
 
174
    type: string
 
175
    description: |
 
176
      The IP address and netmask of the OpenStack Internal network (e.g.,
 
177
      192.168.0.0/24)
 
178
      .
 
179
      This network will be used for internal endpoints.
 
180
  os-public-network:
 
181
    type: string
 
182
    description: |
 
183
      The IP address and netmask of the OpenStack Public network (e.g.,
 
184
      192.168.0.0/24)
 
185
      .
 
186
      This network will be used for public endpoints.
 
187