patroni-packaging
patroni-packaging copied to clipboard
This project is now deprecated! :warning:
Since postgresql.org provides packaging for patroni on most distributions, we feel that we should not work on solving the same things in different ways. Thus we'll be deprecating this repository and the packages.
Please check this document for migration steps.
patroni-packaging
This project packages patroni, along with all necessary libs that aren't easily available as packages themselves.
You're probably looking for prebuilt packages, right? Then head over to the releases and download the newest version there!
building the packages yourself
you'll need docker installed and running
- navigate to the
DEBorRPMdirectory (depending of what you'd like to build). - execute
make docker-imageto generate a custom docker image based on either debian or centos, within which the package will be built. - execute
make packageto build the package. (The Debian side of things will also build vip-manager.) This may take some time, as all necessary python libraries are installed into a virtualenv, which is then packaged. - If you're building .debs, the packages will be in the
DEBdirectory at the end of the build process. On the other hand, after building .rpms, the package will reside in theRPM/rpmsdirectory.
dependencies of the produced packages
rpm
You'll need to install the EPEL repositories, which is the only straight forward way to get psycopg2 in a version newer than 2.5.4 (centos 7 repos only provide 2.5.1), which is a requirement of patroni.
Due to the fact that the python packages on fedora are named
python3-something, the packages produced by centos won't work currently, as they requirepython36-something.
deb
Haven't tested yet. probably python-psycopg2 will suffice. Can probably be automatically installed after apt has finished the dependency check.
The deb packages are still packaged with python2!