~joeborg/charms/trusty/contrail-configuration/rbac-switch

« back to all changes in this revision

Viewing changes to config.yaml

  • Committer: Robert Ayres
  • Date: 2015-04-24 14:27:43 UTC
  • Revision ID: robert.ayres@canonical.com-20150424142743-3mnfmmgs50sdqysh
Add floating pool functionality

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
      Supported Cloud Archive sources include: cloud:precise-folsom,
17
17
      cloud:precise-folsom/updates, cloud:precise-folsom/staging,
18
18
      cloud:precise-folsom/proposed.
 
19
  floating-ip-pools:
 
20
    type: string
 
21
    description: |
 
22
      Floating IP pools to create.
 
23
 
 
24
      Using a YAML encoded string specify one or more floating IP pools using a
 
25
      list of maps, where each map consists of the following attributes:
 
26
 
 
27
      project - project name
 
28
      network - network name
 
29
      pool-name - floating pool name
 
30
      target-projects - list of projects allowed to use pool
 
31
 
 
32
      For example:
 
33
 
 
34
      // create a floating ip pool named floatingip_pool on admin:public network
 
35
      // and allow admin project to use
 
36
      [ { project: admin, network: public, pool-name: floatingip_pool, target-projects: [ admin ] } ]