You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Boris Gallet b8ceb65e04 new: [nextcloud] remove default skeleton directory 2 months ago
..
actions fix: [postgres] prevent failure on slower hosts 4 months ago
build fix: [postgres] add required dependency of ``pgm`` 1 year ago
hooks fix: [cron] make cron build again 2 months ago
lib new: [postgres] allow relation options ``encoding``, ``lc-collate``, ``lc-ctype``, ``template`` 2 years ago
resources/bin new: [postgres] add automatic backup every hours 4 years ago
README.org new: doc: [postgres] added some docs about relation's option 1 year ago
metadata.yml new: [nextcloud,mariadb,postgres] add ``sql-database`` relation support 3 months ago

README.org

Usage

By default, postgres charm won't need any options in general.

However, services using postgres through relations will typically want to set some options (if the default behavior is not enough).

myservice:
  relations:
    postgres-database:
      postgres:
        dbname: foo     ## default uses the name of querying service (here: 'myservice')
        user: mydbuser  ## default uses the name of querying service (here: 'myservice')
        password: bar   ## if not set, a random password will be generated
        extensions:     ## default is empty list
          - unaccent
          - pg_trgm
        init-sql: !bash-stdout | ## default is empty
          zcat "$BASE_CHARM_PATH/src/init.sql.gz"