200306f1cf
test / unit (pull_request) Successful in 35s
test / integration (pull_request) Successful in 21s
lint / lint (push) Successful in 1m44s
test / unit (push) Successful in 32s
test / integration (push) Successful in 19s
Update Quality Badges / update-badges (push) Successful in 1m17s
Replace module-level apply_routes_change wrappers with a public applicator singleton in each backend. Callers now work with the EgressApplicator instance directly (applicator.apply_routes_change) rather than through a function shim.
22 lines
474 B
Python
22 lines
474 B
Python
"""Egress apply for the smolmachines backend.
|
|
|
|
The smolmachines sidecar bundle runs as a host-side Docker container,
|
|
so egress signalling is identical to the docker backend.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from ..docker.egress_apply import ( # noqa: F401
|
|
DockerEgressApplicator,
|
|
EgressApplyError,
|
|
applicator,
|
|
fetch_current_routes,
|
|
)
|
|
|
|
__all__ = [
|
|
"DockerEgressApplicator",
|
|
"EgressApplyError",
|
|
"applicator",
|
|
"fetch_current_routes",
|
|
]
|