├── .circleci └── config.yml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── OWNERS └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .osdk-scorecard.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.adoc ├── cmd └── manager │ └── main.go ├── deploy ├── crds │ ├── postgresql.dev4devs.com_backups_crd.yaml │ ├── postgresql.dev4devs.com_databases_crd.yaml │ ├── postgresql.dev4devs.com_v1alpha1_backup_cr.yaml │ └── postgresql.dev4devs.com_v1alpha1_database_cr.yaml ├── olm-catalog │ ├── olm-test │ │ ├── postgresql-operator.operator-group.yaml │ │ ├── postgresql-operator.operator-source.yaml │ │ └── postgresql-operator.operator-subscription.yaml │ └── postgresql-operator │ │ ├── 0.1.1 │ │ ├── postgresql-operator.v0.1.1.clusterserviceversion.yaml │ │ ├── postgresql.dev4devs.com_backups_crd.yaml │ │ └── postgresql.dev4devs.com_databases_crd.yaml │ │ ├── 0.1.2 │ │ ├── postgresql-operator.v0.1.2.clusterserviceversion.yaml │ │ ├── postgresql.dev4devs.com_backups_crd.yaml │ │ └── postgresql.dev4devs.com_databases_crd.yaml │ │ ├── manifests │ │ ├── postgresql-operator.clusterserviceversion.yaml │ │ ├── postgresql.dev4devs.com_backups_crd.yaml │ │ └── postgresql.dev4devs.com_databases_crd.yaml │ │ └── postgresql-operator.package.yaml ├── operator.yaml ├── role.yaml ├── role_binding.yaml └── service_account.yaml ├── go.mod ├── go.sum ├── pkg ├── apis │ ├── addtoscheme_postgresql_v1alpha1.go │ ├── apis.go │ └── postgresql │ │ ├── group.go │ │ └── v1alpha1 │ │ ├── backup_types.go │ │ ├── database_types.go │ │ ├── doc.go │ │ ├── register.go │ │ ├── zz_generated.deepcopy.go │ │ └── zz_generated.openapi.go ├── config │ ├── backup.go │ └── database.go ├── controller │ ├── add_backup.go │ ├── add_database.go │ ├── backup │ │ ├── controller.go │ │ ├── controller_test.go │ │ ├── create_resources.go │ │ ├── fakeclient_test.go │ │ ├── helpers.go │ │ ├── mocks_test.go │ │ ├── status.go │ │ └── status_test.go │ ├── controller.go │ └── database │ │ ├── controller.go │ │ ├── controller_test.go │ │ ├── create_resources.go │ │ ├── fakeclient_test.go │ │ ├── manage_resources.go │ │ ├── mocks_test.go │ │ ├── status.go │ │ └── status_test.go ├── resource │ ├── cronjobs.go │ ├── deployments.go │ ├── pvs.go │ ├── secrets.go │ └── services.go ├── service │ ├── crs_fetches.go │ ├── generic_fetches.go │ ├── postgresql_fetches.go │ └── watches.go └── utils │ ├── backup_mandatory_specs.go │ ├── constants.go │ ├── database_envvars.go │ ├── database_mandatory_specs.go │ └── utils.go ├── scripts └── export_local_envvars.sh ├── test └── e2e │ ├── main_test.go │ └── oper_test.go ├── tools.go └── version └── version.go /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/.github/OWNERS -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/.gitignore -------------------------------------------------------------------------------- /.osdk-scorecard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/.osdk-scorecard.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/Makefile -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/README.adoc -------------------------------------------------------------------------------- /cmd/manager/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/cmd/manager/main.go -------------------------------------------------------------------------------- /deploy/crds/postgresql.dev4devs.com_backups_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/deploy/crds/postgresql.dev4devs.com_backups_crd.yaml -------------------------------------------------------------------------------- /deploy/crds/postgresql.dev4devs.com_databases_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/deploy/crds/postgresql.dev4devs.com_databases_crd.yaml -------------------------------------------------------------------------------- /deploy/crds/postgresql.dev4devs.com_v1alpha1_backup_cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/deploy/crds/postgresql.dev4devs.com_v1alpha1_backup_cr.yaml -------------------------------------------------------------------------------- /deploy/crds/postgresql.dev4devs.com_v1alpha1_database_cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/deploy/crds/postgresql.dev4devs.com_v1alpha1_database_cr.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/olm-test/postgresql-operator.operator-group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/deploy/olm-catalog/olm-test/postgresql-operator.operator-group.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/olm-test/postgresql-operator.operator-source.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/deploy/olm-catalog/olm-test/postgresql-operator.operator-source.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/olm-test/postgresql-operator.operator-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/deploy/olm-catalog/olm-test/postgresql-operator.operator-subscription.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/postgresql-operator/0.1.1/postgresql-operator.v0.1.1.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/deploy/olm-catalog/postgresql-operator/0.1.1/postgresql-operator.v0.1.1.clusterserviceversion.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/postgresql-operator/0.1.1/postgresql.dev4devs.com_backups_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/deploy/olm-catalog/postgresql-operator/0.1.1/postgresql.dev4devs.com_backups_crd.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/postgresql-operator/0.1.1/postgresql.dev4devs.com_databases_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/deploy/olm-catalog/postgresql-operator/0.1.1/postgresql.dev4devs.com_databases_crd.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/postgresql-operator/0.1.2/postgresql-operator.v0.1.2.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/deploy/olm-catalog/postgresql-operator/0.1.2/postgresql-operator.v0.1.2.clusterserviceversion.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/postgresql-operator/0.1.2/postgresql.dev4devs.com_backups_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/deploy/olm-catalog/postgresql-operator/0.1.2/postgresql.dev4devs.com_backups_crd.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/postgresql-operator/0.1.2/postgresql.dev4devs.com_databases_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/deploy/olm-catalog/postgresql-operator/0.1.2/postgresql.dev4devs.com_databases_crd.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/postgresql-operator/manifests/postgresql-operator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/deploy/olm-catalog/postgresql-operator/manifests/postgresql-operator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/postgresql-operator/manifests/postgresql.dev4devs.com_backups_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/deploy/olm-catalog/postgresql-operator/manifests/postgresql.dev4devs.com_backups_crd.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/postgresql-operator/manifests/postgresql.dev4devs.com_databases_crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/deploy/olm-catalog/postgresql-operator/manifests/postgresql.dev4devs.com_databases_crd.yaml -------------------------------------------------------------------------------- /deploy/olm-catalog/postgresql-operator/postgresql-operator.package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/deploy/olm-catalog/postgresql-operator/postgresql-operator.package.yaml -------------------------------------------------------------------------------- /deploy/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/deploy/operator.yaml -------------------------------------------------------------------------------- /deploy/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/deploy/role.yaml -------------------------------------------------------------------------------- /deploy/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/deploy/role_binding.yaml -------------------------------------------------------------------------------- /deploy/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/deploy/service_account.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/go.sum -------------------------------------------------------------------------------- /pkg/apis/addtoscheme_postgresql_v1alpha1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/apis/addtoscheme_postgresql_v1alpha1.go -------------------------------------------------------------------------------- /pkg/apis/apis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/apis/apis.go -------------------------------------------------------------------------------- /pkg/apis/postgresql/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/apis/postgresql/group.go -------------------------------------------------------------------------------- /pkg/apis/postgresql/v1alpha1/backup_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/apis/postgresql/v1alpha1/backup_types.go -------------------------------------------------------------------------------- /pkg/apis/postgresql/v1alpha1/database_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/apis/postgresql/v1alpha1/database_types.go -------------------------------------------------------------------------------- /pkg/apis/postgresql/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/apis/postgresql/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/apis/postgresql/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/apis/postgresql/v1alpha1/register.go -------------------------------------------------------------------------------- /pkg/apis/postgresql/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/apis/postgresql/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/apis/postgresql/v1alpha1/zz_generated.openapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/apis/postgresql/v1alpha1/zz_generated.openapi.go -------------------------------------------------------------------------------- /pkg/config/backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/config/backup.go -------------------------------------------------------------------------------- /pkg/config/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/config/database.go -------------------------------------------------------------------------------- /pkg/controller/add_backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/controller/add_backup.go -------------------------------------------------------------------------------- /pkg/controller/add_database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/controller/add_database.go -------------------------------------------------------------------------------- /pkg/controller/backup/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/controller/backup/controller.go -------------------------------------------------------------------------------- /pkg/controller/backup/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/controller/backup/controller_test.go -------------------------------------------------------------------------------- /pkg/controller/backup/create_resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/controller/backup/create_resources.go -------------------------------------------------------------------------------- /pkg/controller/backup/fakeclient_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/controller/backup/fakeclient_test.go -------------------------------------------------------------------------------- /pkg/controller/backup/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/controller/backup/helpers.go -------------------------------------------------------------------------------- /pkg/controller/backup/mocks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/controller/backup/mocks_test.go -------------------------------------------------------------------------------- /pkg/controller/backup/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/controller/backup/status.go -------------------------------------------------------------------------------- /pkg/controller/backup/status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/controller/backup/status_test.go -------------------------------------------------------------------------------- /pkg/controller/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/controller/controller.go -------------------------------------------------------------------------------- /pkg/controller/database/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/controller/database/controller.go -------------------------------------------------------------------------------- /pkg/controller/database/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/controller/database/controller_test.go -------------------------------------------------------------------------------- /pkg/controller/database/create_resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/controller/database/create_resources.go -------------------------------------------------------------------------------- /pkg/controller/database/fakeclient_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/controller/database/fakeclient_test.go -------------------------------------------------------------------------------- /pkg/controller/database/manage_resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/controller/database/manage_resources.go -------------------------------------------------------------------------------- /pkg/controller/database/mocks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/controller/database/mocks_test.go -------------------------------------------------------------------------------- /pkg/controller/database/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/controller/database/status.go -------------------------------------------------------------------------------- /pkg/controller/database/status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/controller/database/status_test.go -------------------------------------------------------------------------------- /pkg/resource/cronjobs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/resource/cronjobs.go -------------------------------------------------------------------------------- /pkg/resource/deployments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/resource/deployments.go -------------------------------------------------------------------------------- /pkg/resource/pvs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/resource/pvs.go -------------------------------------------------------------------------------- /pkg/resource/secrets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/resource/secrets.go -------------------------------------------------------------------------------- /pkg/resource/services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/resource/services.go -------------------------------------------------------------------------------- /pkg/service/crs_fetches.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/service/crs_fetches.go -------------------------------------------------------------------------------- /pkg/service/generic_fetches.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/service/generic_fetches.go -------------------------------------------------------------------------------- /pkg/service/postgresql_fetches.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/service/postgresql_fetches.go -------------------------------------------------------------------------------- /pkg/service/watches.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/service/watches.go -------------------------------------------------------------------------------- /pkg/utils/backup_mandatory_specs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/utils/backup_mandatory_specs.go -------------------------------------------------------------------------------- /pkg/utils/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/utils/constants.go -------------------------------------------------------------------------------- /pkg/utils/database_envvars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/utils/database_envvars.go -------------------------------------------------------------------------------- /pkg/utils/database_mandatory_specs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/utils/database_mandatory_specs.go -------------------------------------------------------------------------------- /pkg/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/pkg/utils/utils.go -------------------------------------------------------------------------------- /scripts/export_local_envvars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/scripts/export_local_envvars.sh -------------------------------------------------------------------------------- /test/e2e/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/test/e2e/main_test.go -------------------------------------------------------------------------------- /test/e2e/oper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/test/e2e/oper_test.go -------------------------------------------------------------------------------- /tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/tools.go -------------------------------------------------------------------------------- /version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4devs-com/postgresql-operator/HEAD/version/version.go --------------------------------------------------------------------------------