fastapi-dls/ROADMAP.md

28 lines
994 B
Markdown
Raw Permalink Normal View History

2023-03-24 13:28:44 +00:00
# Roadmap
2023-05-09 04:58:51 +00:00
I am planning to implement the following features in the future.
2023-03-24 13:28:44 +00:00
## HA - High Availability
Support Failover-Mode (secondary ip address) as in official DLS.
2023-05-09 04:58:51 +00:00
**Note**: There is no Load-Balancing / Round-Robin HA Mode supported! If you want to use that, consider to use
Docker-Swarm with shared/cluster database (e.g. postgres).
2023-03-24 13:28:44 +00:00
*See [ha branch](https://git.collinwebdesigns.de/oscar.krause/fastapi-dls/-/tree/ha) for current status.*
## UI - User Interface
Add a user interface to manage origins and leases.
*See [ui branch](https://git.collinwebdesigns.de/oscar.krause/fastapi-dls/-/tree/ui) for current status.*
## Config Database
2023-05-09 04:58:51 +00:00
Instead of using environment variables, configuration files and manually create certificates, store configs and
certificates in database (like origins and leases). Also, there should be provided a startup assistant to prefill
required attributes and create instance-certificates. This is more user-friendly and should improve fist setup.