cloudfoundry-community / postgres-boshrelease

A BOSH release for deploying PostgreSQL
MIT License
8 stars 10 forks source link

properties.config.port seems to be ignored #19

Closed jhunt closed 6 years ago

jhunt commented 6 years ago

I have a manifest that looks like this:

- name: postgresql
  jobs:
  - name: postgres
    release: postgres
    properties:
      config:
        port: 5432
      hba:
      - host all all 0.0.0.0/0 md5
      - host all all ::/0 md5
      replication:
        enabled: true
      users:
      - password: ...
        username: ...

But the postgresql.conf still has 6432 listed as the port, and that's what postgres is listening on.

jhunt commented 6 years ago

Probably because it should be postgres.config.port, not just config.port... 😳