An open API service indexing awesome lists of open source software.

https://github.com/ahuahuachi/traefik-cert-exporter

CLI and python library to export Traefik SSL certificates
https://github.com/ahuahuachi/traefik-cert-exporter

certificate cli docker docker-compose docker-image export python ssl traefik

Last synced: 5 months ago
JSON representation

CLI and python library to export Traefik SSL certificates

Awesome Lists containing this project

README

          

![license](https://badgen.net/github/license/ahuahuachi/traefik-cert-exporter/)
![releases](https://badgen.net/github/releases/ahuahuachi/traefik-cert-exporter/?icon=github)
![stars](https://badgen.net/github/stars/ahuahuachi/traefik-cert-exporter/?icon=github)
![docker stars](https://badgen.net/docker/stars/ahuahuachi/traefik-cert-exporter/?icon=docker)
![docker pulls](https://badgen.net/docker/pulls/ahuahuachi/traefik-cert-exporter/?icon=docker)
![docker size](https://badgen.net/docker/size/ahuahuachi/traefik-cert-exporter/?icon=docker)
![pypi version](https://badgen.net/pypi/v/traefik-cert-exporter/?icon=pypi)
![python versions](https://badgen.net/pypi/python/traefik-cert-exporter/?icon=pypi)
![python downloads](https://badgen.net/pypi/dm/traefik-cert-exporter/?icon=pypi)

# Traefik Cert Exporter

CLI and python library to export [Traefik](https://traefik.io/traefik/) SSL certificates.

This project is intended to provide tools to automate the process of extracting the certificates generated by [Traefik's automatic certificate generation](https://doc.traefik.io/traefik/https/acme)

Project based on the excelent work on [Traefik SSL Certificate Exporter](https://github.com/rafi0101/traefik-ssl-certificate-exporter)

## Python library

You can use the python library on your own automation scripts

### Installation

```bash
pip install traefik-cert-exporter
```

### Usage

```python
from traefik_cert_exporter import export_certificates

acme_file = "./acme.json"
output_dir = "./certs"

export_certificates(acme_file, output_dir)
```

## CLI

You can use the included CLI directly from the terminal

### Installation

```bash
pip install traefik-cert-exporter
```

### Usage

```bash
export-certs ./acme.json ./certs
```

## Docker

There is also a Docker image that create a cron job that runs the certificate export process on a schedule.

The container needs to have access to the store file generated by Traefik, so it needs to be configured with the correct variables to run successfully.

You can use the docker compose example to create your own environment.

image: https://hub.docker.com/r/ahuahuachi/traefik-cert-exporter

### Environment Variables

| Variable | Default value | Description |
| ------------- | ------------------- | ------------------------------------------------- |
| CRON_SCHEDULE | `0 0 1 * *` | Cron schedule to run the extraction script |
| STORAGE_FILE | `traefik/acme.json` | Path to the acme storage file |
| OUTPUT_PATH | `certs/` | Path where the certs are going to be extracted to |
| ON_START | `1` (true) | Run export scripts once when container starts |

### Docker compose example

Traefik's static configuration file

```yaml
# static.yaml
certificatesResolvers:
myresolver:
acme:
storage: "/config/acme.json"
...
```

```yaml
# docker-compose.yaml
version: "3"

services:
cert-exporter:
image: ahuahuachi/traefik-cert-exporter:latest
environment:
- STORAGE_FILE="/config/acme.json"
- OUTPUT_PATH="/certs"
volumes:
- traefik-config:/config/
- ./certs:/certs

traefik:
image: traefik:latest
volumes:
- traefik-config:/config/
...

volumes:
traefik-config:
```