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.
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!
you'll need docker installed and running
- navigate to the
DEB
orRPM
directory (depending of what you'd like to build). - execute
make docker-image
to generate a custom docker image based on either debian or centos, within which the package will be built. - execute
make package
to 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
DEB
directory at the end of the build process. On the other hand, after building .rpms, the package will reside in theRPM/rpms
directory.
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
.
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!