├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── es2postgres.sh └── helm-chart ├── .helmignore ├── Chart.yaml ├── templates ├── NOTES.txt ├── _helpers.tpl ├── configmaps.yaml ├── deployment.yaml └── secrets.yaml └── values.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | helm-chart/*.sql 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaray-io/es2postgres/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaray-io/es2postgres/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaray-io/es2postgres/HEAD/README.md -------------------------------------------------------------------------------- /es2postgres.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaray-io/es2postgres/HEAD/es2postgres.sh -------------------------------------------------------------------------------- /helm-chart/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaray-io/es2postgres/HEAD/helm-chart/.helmignore -------------------------------------------------------------------------------- /helm-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaray-io/es2postgres/HEAD/helm-chart/Chart.yaml -------------------------------------------------------------------------------- /helm-chart/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | ElasticSearch to PostgreSQL Loader installed. 2 | -------------------------------------------------------------------------------- /helm-chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaray-io/es2postgres/HEAD/helm-chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-chart/templates/configmaps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaray-io/es2postgres/HEAD/helm-chart/templates/configmaps.yaml -------------------------------------------------------------------------------- /helm-chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaray-io/es2postgres/HEAD/helm-chart/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-chart/templates/secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaray-io/es2postgres/HEAD/helm-chart/templates/secrets.yaml -------------------------------------------------------------------------------- /helm-chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaray-io/es2postgres/HEAD/helm-chart/values.yaml --------------------------------------------------------------------------------