You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Upgrade database creation interface to support complete features.
Current interface:
pg_databases: # create a business database 'meta'
- name: metaschemas: [meta] # create extra schema named 'meta'extensions: [{name: postgis}] # create extra extension postgisparameters: # overwrite database meta's default search_pathsearch_path: public, monitor
Proposed interface
Which include complete customizable options for postgres database.
pg_databases:
- name: meta # name is the only required field for a databaseowner: postgres # optional, database ownertemplate: template1 # optional, template1 by defaultencoding: UTF8 # optional, UTF8 by defaultlocale: C # optional, C by defaultallowconn: true # optional, true by default, false disable connect at allrevokeconn: false # optional, false by default, true revoke connect from public # (only default user and owner have connect privilege on database)tablespace: pg_default # optional, 'pg_default' is the default tablespaceconnlimit: -1# optional, connection limit, -1 or none disable limit (default)extensions: # optional, extension name and where to create
- {name: postgis, schema: public}parameters: # optional, extra parameters with ALTER DATABASEenable_partitionwise_join: truepgbouncer: true # optional, add this database to pgbouncer list? true by defaultcomment: pigsty meta database # optional, comment string for database
The text was updated successfully, but these errors were encountered:
Upgrade database creation interface to support complete features.
Current interface:
Proposed interface
Which include complete customizable options for postgres database.
The text was updated successfully, but these errors were encountered: