https://github.com/perbu/zmirror
Zendesk --> Postgresql mirroring
https://github.com/perbu/zmirror
Last synced: 3 months ago
JSON representation
Zendesk --> Postgresql mirroring
- Host: GitHub
- URL: https://github.com/perbu/zmirror
- Owner: perbu
- License: bsd-2-clause
- Created: 2026-03-11T08:49:16.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-03-11T11:16:13.000Z (5 months ago)
- Last Synced: 2026-03-11T17:50:40.729Z (5 months ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# zmirror
Syncs Zendesk tickets to PostgreSQL using [dlt](https://dlthub.com/). Runs as a Kubernetes CronJob.
## Setup
1. Fill in credentials in `k8s.yaml`
2. Build and push the image:
```
docker build -t your-registry/zmirror:latest .
docker push your-registry/zmirror:latest
```
3. Update the `image` field in `k8s.yaml`
4. `kubectl apply -f k8s.yaml`
## Configuration
All config via environment variables (see `k8s.yaml` Secret):
| Variable | Description |
|---|---|
| `SOURCES__ZENDESK__CREDENTIALS__SUBDOMAIN` | Zendesk subdomain |
| `SOURCES__ZENDESK__CREDENTIALS__EMAIL` | Zendesk agent email |
| `SOURCES__ZENDESK__CREDENTIALS__TOKEN` | Zendesk API token |
| `DESTINATION__POSTGRES__CREDENTIALS` | Postgres connection string |
## License
BSD-2-Clause. See [LICENSE](LICENSE).