Port details |
- py-overlord Deploy FreeBSD jails as fast as you code
- 0.10.0 sysutils
=0 Package not present on quarterly.This port was created during this quarter. It will be in the next quarterly branch but not the current one. - Maintainer: dtxdf@FreeBSD.org
 - Port Added: 2025-05-03 19:12:04
- Last Update: 2025-06-19 20:28:47
- Commit Hash: 4f0eba1
- Also Listed In: python
- License: BSD3CLAUSE
- WWW:
- https://github.com/DtxdF/overlord
- Description:
- Overlord is a fast, distributed orchestrator for FreeBSD jails
oriented to GitOps. You define a file with the service intended to
run on your cluster and deployment takes seconds to minutes.
¦ ¦ ¦ ¦ 
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - There is no configure plist information for this port.
- Dependency lines:
-
- ${PYTHON_PKGNAMEPREFIX}overlord>0:sysutils/py-overlord@${PY_FLAVOR}
- To install the port:
- cd /usr/ports/sysutils/py-overlord/ && make install clean
- To add the package, run one of these commands:
- pkg install sysutils/py-overlord
- pkg install py311-overlord
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above. NOTE: This is a Python port. Instead of py311-overlord listed in the above command, you can pick from the names under the Packages section.- PKGNAME: py311-overlord
- Package flavors (<flavor>: <package>)
- distinfo:
- TIMESTAMP = 1749862430
SHA256 (DtxdF-overlord-v0.10.0_GH0.tar.gz) = 17377ceaf820880c9307deadc1a6b53db5f239c5c55301a52d31de10e75a612f
SIZE (DtxdF-overlord-v0.10.0_GH0.tar.gz) = 87272
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- py311-setuptools>=63.1.0 : devel/py-setuptools@py311
- python3.11 : lang/python311
- Test dependencies:
-
- python3.11 : lang/python311
- Runtime dependencies:
-
- py311-aiofiles>=0 : devel/py-aiofiles@py311
- py311-aiostalk>=0 : net/py-aiostalk@py311
- py311-asciitree>=0 : graphics/py-asciitree@py311
- py311-click>=0 : devel/py-click@py311
- py311-dnspython>=0 : dns/py-dnspython@py311
- py311-etcd3gw>=0 : devel/py-etcd3gw@py311
- py311-httpx-retries>=0 : www/py-httpx-retries@py311
- py311-humanfriendly>=0 : textproc/py-humanfriendly@py311
- py311-ifaddr>=0 : net/py-ifaddr@py311
- py311-mako>=0 : textproc/py-mako@py311
- py311-psutil>=0 : sysutils/py-psutil@py311
- py311-pyaml-env>=0 : devel/py-pyaml-env@py311
- py311-pyjwt>=0 : www/py-pyjwt@py311
- py311-pymemcache>=0 : databases/py-pymemcache@py311
- py311-python-dotenv>=0 : www/py-python-dotenv@py311
- py311-pyyaml>=0 : devel/py-pyyaml@py311
- py311-supervisor>=0 : sysutils/py-supervisor@py311
- py311-tornado>=0 : www/py-tornado@py311
- beanstalkd>=0 : net/beanstalkd
- memcached>=0 : databases/memcached
- python3.11 : lang/python311
- There are no ports dependent upon this port
Configuration Options:
- ===> The following configuration options are available for py311-overlord-0.10.0:
DOCS=on: Build and/or install documentation
===> Use 'make config' to modify these settings
- Options name:
- sysutils_py-overlord
- USES:
- python
- pkg-message:
- For install:
- The configuration file can be found at the following path:
/usr/local/etc/overlord.yml
Edit it to suit your needs before starting the Overlord services.
1. If you have configured Overlord to use Beanstalkd and Memcache locally (by default),
you need to start those services.
- enable required services:
# sysrc beanstalkd_enable=YES
# sysrc memcached_enable=YES
- start required services:
# service beanstalkd start
# service memcached start
2. If you have not installed Director or AppJail from the development repository and
prefer to install them from precompiled binaries:
- install Director:
# pkg install py311-director
- install AppJail:
# pkg install -y appjail # or appjail-devel
3. Set up supervisord in order to execute Overlord services:
- Some processes may rely on the assumption that rctl(4) is enabled, if it is not
already enabled, please enable it by adding to /boot/loader.conf:
kern.racct.enable=1
Remember to reboot for the above change take effect.
- let supervisord.conf load files contained in this directory by adding to
/usr/local/etc/supervisord.conf:
[include]
files = /usr/local/share/overlord/overlord.ini
- enable supervisord:
# sysrc supervisord_enable=YES
- start supervisord:
# service supervisord start
4. Enjoy.
- Master Sites:
|
Number of commits found: 6
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
0.10.0 19 Jun 2025 20:28:47
    |
Charlie Li (vishwin)  |
python.mk: rename PYTHON_EXT_SUFFIX to PYTHON_TAG, document, etc
EXT_SUFFIX, according to PEP 3149, refers to the full tag and
extension for compiled extension module objects, eg .cpython-311.so,
.cpython-313t.so, etc. We do not use the correct semantic meaning,
and this usage becomes ambiguous and confusing when tags do not
match between bytecode and compiled extension module objects.
Rename our PYTHON_EXT_SUFFIX to PYTHON_TAG to align with PEP 3147's
specification of a magic tag, which consists of implementation name
and shorthand version only. This is meant for bytecode and other
files containing this tag in their filename that do not depend on
a specific Python ABI for the same version. Chase all existing
consumers.
(Only the first 15 lines of the commit message are shown above ) |
0.10.0 14 Jun 2025 03:24:43
    |
Jesús Daniel Colmenares Oviedo (dtxdf)  |
sysutils/py-overlord: Update to 0.10.0
ChangeLog: https://github.com/DtxdF/overlord/releases/tag/v0.10.0
Approved by: acm (mentor) |
0.9.0 08 Jun 2025 07:02:28
    |
Jesús Daniel Colmenares Oviedo (dtxdf)  |
sysutils/py-overlord: Update to 0.9.0
ChangeLog: https://github.com/DtxdF/overlord/releases/tag/v0.9.0
Approved by: acm (mentor) |
0.8.0 03 Jun 2025 06:04:09
    |
Jesús Daniel Colmenares Oviedo (dtxdf)  |
*/*: Change maintainer address to my @FreeBSD.org email
Approved by: acm (mentor) |
0.8.0 17 May 2025 19:56:03
    |
Vladimir Druzenko (vvd)  Author: Jesús Daniel Colmenares Oviedo |
sysutils/py-overlord: Update 0.7.0 => 0.8.0
Changelog:
https://github.com/DtxdF/overlord/releases/tag/v0.8.0
PR: 286889 |
0.7.0 03 May 2025 19:09:16
    |
Jose Alonso Cardenas Marquez (acm)  Author: Jesús Daniel Colmenares Oviedo |
sysutils/py-overlord: New port: Deploy FreeBSD jails as fast as you code
Overlord is a fast, distributed orchestrator for FreeBSD jails
oriented to GitOps. You define a file with the service intended to
run on your cluster and deployment takes seconds to minutes.
PR: 285751 |
Number of commits found: 6
|