~richard-asbridge/charms/precise/postgresql/postgresql-admin-ip

« back to all changes in this revision

Viewing changes to config.yaml

  • Committer: Tom Haddon
  • Date: 2012-07-26 14:42:58 UTC
  • mto: (24.15.1 postgresql)
  • mto: This revision was merged to the branch mainline in revision 25.
  • Revision ID: tom.haddon@canonical.com-20120726144258-o1li1l9e28vkxiti
Initial try and custom postgresql charm

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
options:
 
2
  version:
 
3
    default: "9.1"
 
4
    type: string
 
5
    description: Version of PostgreSQL that we want to install
 
6
  cluster_name:
 
7
    default: "main"
 
8
    type: string
 
9
    description: Name of the cluster we want to install the DBs into
 
10
  kernel_shmall:
 
11
    default: 0
 
12
    type: int
 
13
    description: Kernel/shmall
 
14
  kernel_shmmax:
 
15
    default: 0
 
16
    type: int
 
17
    description: Kernel/shmmax
 
18
  listen_ip:
 
19
    default: "*"
 
20
    type: string
 
21
    description: IP to listen on
 
22
  listen_port:
 
23
    default: 5432
 
24
    type: int
 
25
    description: Port to listen on
 
26
  max_connections:
 
27
    default: 100
 
28
    type: int
 
29
    description: Maximum number of connections to allow to the PG database