Skip to content

Work in Progress

This page is still work in progress and will be updated as soon as possible.
Feel free to create a Pull Request for this page.

PgUser

Resource Definition

The PgUser resource manages a role with login (user) on the referenced instance.

apiVersion: postgres.brose.bike/v1
kind: PgUser
metadata:
  name: service_user
spec:
  instance:
    namespace: "default"
    name: "instance-001"
  secret:
    name: "service-credentials"
  databases: 
    - name: "service_db"
      owner: true
      privileges: ["CONNECT", "CREATE"]

Attribute Description