~openstack-charmers-archive/charms/trusty/percona-cluster/trunk

« back to all changes in this revision

Viewing changes to config.yaml

  • Committer: Liam Young
  • Date: 2014-07-29 07:21:59 UTC
  • mfrom: (33.1.7 percona-cluster)
  • Revision ID: liam.young@canonical.com-20140729072159-huzthffk1hw21b9n
[jamespage,r=gnuoy] Add support for separate 'access-network' configuration.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
options:
2
 
    source:
3
 
        type: string
4
 
        description: Package install location for Percona XtraDB Cluster (defaults to distro for >= 14.04)
5
 
    dataset-size:
6
 
        default: '80%'
7
 
        type: string
8
 
        description: How much data do you want to keep in memory in the DB. This will be used to tune settings in the database server appropriately. Suffix this value with 'K','M','G', or 'T' to get the relevant kilo/mega/etc. bytes. If suffixed with %, one will get that percentage of RAM devoted to dataset.
9
 
    max-connections:
10
 
        default: -1
11
 
        type: int
12
 
        description: Maximum connections to allow. -1 means use the server's compiled in default.
13
 
    root-password:
14
 
        type: string
15
 
        description: Root password for MySQL access; must be configured pre-deployment for Active-Active clusters.
16
 
    sst-password:
17
 
        type: string
18
 
        description: Re-sync account password for new cluster nodes; must be configured pre-deployment for Active-Active clusters.
19
 
    vip:
20
 
        type: string
21
 
        description: Virtual IP to use to front Percona XtraDB Cluster in active/active HA configuration
22
 
    vip_iface:
23
 
        type: string
24
 
        default: eth0
25
 
        description: Network interface on which to place the Virtual IP
26
 
    vip_cidr:
27
 
        type: int
28
 
        default: 24
29
 
        description: Netmask that will be used for the Virtual IP
30
 
    ha-bindiface:
31
 
        type: string
32
 
        default: eth0
33
 
        description: Default network interface on which HA cluster will bind to communication with the other members of the HA Cluster.
34
 
    ha-mcastport:
35
 
        type: int
36
 
        default: 5490
37
 
        description: Default multicast port number that will be used to communicate between HA Cluster nodes.
 
2
  source:
 
3
    type: string
 
4
    description: Package install location for Percona XtraDB Cluster (defaults to distro for >= 14.04)
 
5
  dataset-size:
 
6
    default: '80%'
 
7
    type: string
 
8
    description: How much data do you want to keep in memory in the DB. This will be used to tune settings in the database server appropriately. Suffix this value with 'K','M','G', or 'T' to get the relevant kilo/mega/etc. bytes. If suffixed with %, one will get that percentage of RAM devoted to dataset.
 
9
  max-connections:
 
10
    default: -1
 
11
    type: int
 
12
    description: Maximum connections to allow. -1 means use the server's compiled in default.
 
13
  root-password:
 
14
    type: string
 
15
    description: Root password for MySQL access; must be configured pre-deployment for Active-Active clusters.
 
16
  sst-password:
 
17
    type: string
 
18
    description: Re-sync account password for new cluster nodes; must be configured pre-deployment for Active-Active clusters.
 
19
  vip:
 
20
    type: string
 
21
    description: Virtual IP to use to front Percona XtraDB Cluster in active/active HA configuration
 
22
  vip_iface:
 
23
    type: string
 
24
    default: eth0
 
25
    description: Network interface on which to place the Virtual IP
 
26
  vip_cidr:
 
27
    type: int
 
28
    default: 24
 
29
    description: Netmask that will be used for the Virtual IP
 
30
  ha-bindiface:
 
31
    type: string
 
32
    default: eth0
 
33
    description: Default network interface on which HA cluster will bind to communication with the other members of the HA Cluster.
 
34
  ha-mcastport:
 
35
    type: int
 
36
    default: 5490
 
37
    description: Default multicast port number that will be used to communicate between HA Cluster nodes.
 
38
  # Network configuration options
 
39
  # by default all access is over 'private-address'
 
40
  access-network:
 
41
    type: string
 
42
    description: |
 
43
      The IP address and netmask of the 'access' network (e.g., 192.168.0.0/24)
 
44
      .
 
45
      This network will be used for access to database services.
 
46