postgres-operator icon indicating copy to clipboard operation
postgres-operator copied to clipboard

PostgreSQL operator for Kubernetes

Results 60 postgres-operator issues
Sort by recently updated
recently updated
newest added

I'm not 100% sure how to reproduce this, but this happened to me when I needed to remove postgres-operator form my cluster, and install it again, but wanting to keep...

This PR is to add helm chart for the Postgres Operator installation. I think it could be more convenient compared to k8s kustomize way for many usecases. Please let me...

This is a first draft, and is untested (I'm in the process of setting up some infra to test it properly). I already open this PR to get some early...

Currently when we apply Postgres CR it creates a DB if it doesn't exists and if it exists it changes its owner to the role created by the Postgres CRs....

First off, loving many things about this operator but one issue I ran into trying to migrate some things to it is that I have a few third party apps...

Trying to use this operator (version 1.1.1) against AWS Aurora (postgres): ``` apiVersion: db.movetokube.com/v1alpha1 kind: Postgres metadata: name: my-db spec: database: test-db # Name of database created in PostgreSQL dropOnDelete:...

Hi all I'm trying to use CR to create/delete database/users over a pre-generated Google PostreSQL instance. **Prerequisites** (done manually outside operator) * Create database instance * create default database `postgresql-operator`...

I think this doesn't cover it all, but just the `ext-postgres-operator` secret, it's lacking the `POSTGRES_URL` generated by the `Postgres` CRD. Will send a fixup later. _Originally posted by @endersonmaia...

For security and reproducibility of deploys, the operator container image should use a tagged one. https://github.com/movetokube/postgres-operator/blob/master/deploy/operator.yaml#L18 ```yaml ... containers: - name: ext-postgres-operator image: movetokube/postgres-operator:0.5.2 ... ```

The current logs are not following a pattern. They start with JSON, which is nice. ``` {"level":"info","ts":1645719468.362505,"logger":"cmd","msg":"Go Version: go1.13.3"} {"level":"info","ts":1645719468.362529,"logger":"cmd","msg":"Go OS/Arch: linux/amd64"} {"level":"info","ts":1645719468.3625689,"logger":"cmd","msg":"Version of operator-sdk: v0.17.1"} ```` Then I have...