- GET /topologies/services/{name}/schema serves the declared ServiceConfigField
metadata so the Inspector can auto-render forms.
- PUT /(topologies/{id}/)deckies/{decky}/services/{svc}/config persists the
validated dict (DB + compose); container untouched (Save).
- POST /(topologies/{id}/)deckies/{decky}/services/{svc}/apply persists then
force-recreates <decky>-<svc> so the new env takes effect (Apply, destructive).
- New engine helper update_service_config wires both fleet and topology paths
through the existing _persist_fleet_change / _rerender_topology_compose
machinery; emits decky.<name>.service_config_changed on the bus.
526 lines
18 KiB
Python
526 lines
18 KiB
Python
"""Add/remove a single service on a deployed decky without full redeploy.
|
|
|
|
The ``_compose()`` wrapper in :mod:`decnet.engine.deployer` already
|
|
supports per-service targeting (``up --no-deps -d <svc>``,
|
|
``stop <svc>``, ``rm -f <svc>``). What was missing was the
|
|
orchestration: regenerate the compose file (so future redeploys reflect
|
|
the change), persist the new ``services`` list, and run the targeted
|
|
compose command.
|
|
|
|
Two scopes:
|
|
|
|
* **Topology** — source of truth is the ``topology_deckies`` table; the
|
|
compose file is per-topology (``decnet-topology-<id8>-compose.yml``).
|
|
* **Fleet** — source of truth is ``decnet-state.json`` (with the
|
|
``fleet_deckies`` table mirroring it); compose is the unihost
|
|
``decnet-compose.yml``.
|
|
|
|
Both publish ``decky.<name>.service.added`` /
|
|
``decky.<name>.service.removed`` on the bus. The new topic constants
|
|
are documented in ``wiki-checkout/Service-Bus.md``.
|
|
"""
|
|
from __future__ import annotations
|
|
|
|
from pathlib import Path
|
|
from typing import Any, Literal, Optional
|
|
|
|
import anyio
|
|
|
|
from decnet.bus import topics
|
|
from decnet.logging import get_logger
|
|
from decnet.services.base import BaseService
|
|
from decnet.services.registry import get_service
|
|
from decnet.topology.persistence import hydrate
|
|
from decnet.web.db.repository import BaseRepository
|
|
|
|
# Heavy imports (composer/deployer pull in decnet.network → docker) are
|
|
# deferred to call-sites via the ``_compose`` / ``_topology_compose_path``
|
|
# / ``_load_state`` indirection helpers below. Mirrors the lazy-import
|
|
# pattern in decnet.canary.planter for the same reason.
|
|
|
|
|
|
def _compose(*args: str, compose_file: Optional[Path] = None, env=None) -> None:
|
|
"""Indirection so tests can ``monkeypatch.setattr(services_live, '_compose', ...)``.
|
|
|
|
Real implementation lives in :mod:`decnet.engine.deployer`; we
|
|
import-and-delegate at call time to keep this module's import graph
|
|
clean (see module docstring above).
|
|
"""
|
|
from decnet.engine.deployer import _compose as _real_compose
|
|
if compose_file is None:
|
|
_real_compose(*args, env=env)
|
|
else:
|
|
_real_compose(*args, compose_file=compose_file, env=env)
|
|
|
|
|
|
def _topology_compose_path(topology_id: str) -> Path:
|
|
from decnet.engine.deployer import _topology_compose_path as _real_path
|
|
return _real_path(topology_id)
|
|
|
|
|
|
def _write_topology_compose(hydrated, path: Path) -> Path:
|
|
from decnet.topology.compose import write_topology_compose
|
|
return write_topology_compose(hydrated, path)
|
|
|
|
|
|
def _load_state():
|
|
from decnet.config import load_state as _real_load_state
|
|
return _real_load_state()
|
|
|
|
|
|
def _save_state(config, compose_path) -> None:
|
|
from decnet.config import save_state as _real_save_state
|
|
_real_save_state(config, compose_path)
|
|
|
|
|
|
def _write_compose(config, compose_path) -> None:
|
|
from decnet.composer import write_compose as _real_write_compose
|
|
_real_write_compose(config, compose_path)
|
|
|
|
|
|
def _get_bus():
|
|
from decnet.bus.factory import get_bus
|
|
return get_bus()
|
|
|
|
log = get_logger("engine.services_live")
|
|
|
|
DeckyKind = Literal["fleet", "topology"]
|
|
|
|
|
|
class ServiceMutationError(ValueError):
|
|
"""Raised for caller-correctable failures (unknown service, idempotency
|
|
violation, missing decky). The API layer maps subclasses / message
|
|
contents to 4xx codes; everything else surfaces as 500.
|
|
"""
|
|
|
|
|
|
def _validate_service_for_per_decky(name: str) -> BaseService:
|
|
"""Return the registered service or raise ``ServiceMutationError``.
|
|
|
|
``fleet_singleton`` services run once per fleet (e.g. an LLMNR
|
|
responder), not per-decky — we reject the per-decky add/remove
|
|
request rather than silently producing a no-op compose entry.
|
|
"""
|
|
try:
|
|
svc = get_service(name)
|
|
except KeyError as exc:
|
|
raise ServiceMutationError(f"unknown service {name!r}") from exc
|
|
if svc.fleet_singleton:
|
|
raise ServiceMutationError(
|
|
f"service {name!r} is fleet_singleton; not addable per-decky"
|
|
)
|
|
return svc
|
|
|
|
|
|
async def _publish(topic: str, payload: dict[str, Any]) -> None:
|
|
"""Best-effort bus publish — same shape as the canary planter's helper."""
|
|
try:
|
|
bus = _get_bus()
|
|
await bus.connect()
|
|
await bus.publish(topic, payload)
|
|
await bus.close()
|
|
except Exception as e: # noqa: BLE001
|
|
log.warning("services_live bus publish failed topic=%s err=%s", topic, e)
|
|
|
|
|
|
# ---------------------------------------------------------- topology path
|
|
|
|
|
|
async def _topology_decky(
|
|
repo: BaseRepository, topology_id: str, decky_name: str,
|
|
) -> dict[str, Any]:
|
|
hydrated = await hydrate(repo, topology_id)
|
|
if hydrated is None:
|
|
raise ServiceMutationError(f"topology {topology_id!r} not found")
|
|
for d in hydrated["deckies"]:
|
|
cfg = d.get("decky_config") or {}
|
|
name = cfg.get("name") or d.get("name")
|
|
if name == decky_name:
|
|
return d
|
|
raise ServiceMutationError(
|
|
f"decky {decky_name!r} is not in topology {topology_id!r}"
|
|
)
|
|
|
|
|
|
async def _rerender_topology_compose(
|
|
repo: BaseRepository, topology_id: str,
|
|
) -> Path:
|
|
"""Re-hydrate + re-render the per-topology compose file.
|
|
|
|
Called after a successful DB update so future deploys reflect the
|
|
change; without this the file would still describe the old service
|
|
set and a subsequent ``up -d`` would resurrect the removed service.
|
|
"""
|
|
hydrated = await hydrate(repo, topology_id)
|
|
if hydrated is None: # pragma: no cover — narrow race
|
|
raise ServiceMutationError(
|
|
f"topology {topology_id!r} disappeared mid-mutation"
|
|
)
|
|
path = _topology_compose_path(topology_id)
|
|
_write_topology_compose(hydrated, path)
|
|
return path
|
|
|
|
|
|
async def _add_topology_service(
|
|
repo: BaseRepository,
|
|
topology_id: str,
|
|
decky_name: str,
|
|
service_name: str,
|
|
) -> list[str]:
|
|
decky = await _topology_decky(repo, topology_id, decky_name)
|
|
services: list[str] = list(decky.get("services") or [])
|
|
if service_name in services:
|
|
raise ServiceMutationError(
|
|
f"service {service_name!r} already on decky {decky_name!r}"
|
|
)
|
|
services.append(service_name)
|
|
await repo.update_topology_decky(decky["uuid"], {"services": services})
|
|
|
|
compose_path = await _rerender_topology_compose(repo, topology_id)
|
|
target = f"{decky_name}-{service_name}"
|
|
# Run compose in a worker thread so the API event loop stays
|
|
# responsive — same pattern as engine/deployer.deploy_topology.
|
|
await anyio.to_thread.run_sync(
|
|
lambda: _compose(
|
|
"up", "-d", "--no-deps", "--build", target,
|
|
compose_file=compose_path,
|
|
),
|
|
)
|
|
return services
|
|
|
|
|
|
async def _remove_topology_service(
|
|
repo: BaseRepository,
|
|
topology_id: str,
|
|
decky_name: str,
|
|
service_name: str,
|
|
) -> list[str]:
|
|
decky = await _topology_decky(repo, topology_id, decky_name)
|
|
services: list[str] = list(decky.get("services") or [])
|
|
if service_name not in services:
|
|
raise ServiceMutationError(
|
|
f"service {service_name!r} not on decky {decky_name!r}"
|
|
)
|
|
services = [s for s in services if s != service_name]
|
|
target = f"{decky_name}-{service_name}"
|
|
compose_path = _topology_compose_path(topology_id)
|
|
# Stop + rm before persisting + re-rendering so a half-completed
|
|
# mutation leaves the operator a clear state to retry from
|
|
# (container still running; DB still says service is on).
|
|
await anyio.to_thread.run_sync(
|
|
lambda: _compose("stop", target, compose_file=compose_path),
|
|
)
|
|
await anyio.to_thread.run_sync(
|
|
lambda: _compose("rm", "-f", target, compose_file=compose_path),
|
|
)
|
|
await repo.update_topology_decky(decky["uuid"], {"services": services})
|
|
await _rerender_topology_compose(repo, topology_id)
|
|
return services
|
|
|
|
|
|
# ---------------------------------------------------------- fleet path
|
|
|
|
|
|
def _fleet_state_or_raise() -> tuple[Any, Path]:
|
|
state = _load_state()
|
|
if state is None:
|
|
raise ServiceMutationError(
|
|
"no fleet state on disk — run `decnet up` first"
|
|
)
|
|
return state
|
|
|
|
|
|
def _fleet_find_decky(config: Any, decky_name: str) -> Any:
|
|
for d in config.deckies:
|
|
if d.name == decky_name:
|
|
return d
|
|
raise ServiceMutationError(f"fleet decky {decky_name!r} not found")
|
|
|
|
|
|
async def _persist_fleet_change(
|
|
repo: BaseRepository, decky: Any, services: list[str], compose_path: Path,
|
|
) -> None:
|
|
"""Persist the mutation to JSON state, compose file, and the DB row."""
|
|
config, _ = _load_state() # type: ignore[misc] — checked earlier
|
|
target = _fleet_find_decky(config, decky.name)
|
|
target.services = services
|
|
_save_state(config, compose_path)
|
|
_write_compose(config, compose_path)
|
|
# Mirror to the DB row so DB-only consumers (dashboard, API) see the
|
|
# change without waiting for the reconciler.
|
|
from decnet.web.db.models import LOCAL_HOST_SENTINEL
|
|
await repo.upsert_fleet_decky({
|
|
"host_uuid": getattr(decky, "host_uuid", None) or LOCAL_HOST_SENTINEL,
|
|
"name": decky.name,
|
|
"services": services,
|
|
"decky_config": target.model_dump(mode="json"),
|
|
"decky_ip": decky.ip,
|
|
"state": "running",
|
|
})
|
|
|
|
|
|
async def _add_fleet_service(
|
|
repo: BaseRepository, decky_name: str, service_name: str,
|
|
) -> list[str]:
|
|
config, compose_path = _fleet_state_or_raise()
|
|
decky = _fleet_find_decky(config, decky_name)
|
|
services: list[str] = list(decky.services or [])
|
|
if service_name in services:
|
|
raise ServiceMutationError(
|
|
f"service {service_name!r} already on decky {decky_name!r}"
|
|
)
|
|
services.append(service_name)
|
|
await _persist_fleet_change(repo, decky, services, compose_path)
|
|
target = f"{decky_name}-{service_name}"
|
|
await anyio.to_thread.run_sync(
|
|
lambda: _compose(
|
|
"up", "-d", "--no-deps", "--build", target,
|
|
compose_file=compose_path,
|
|
),
|
|
)
|
|
return services
|
|
|
|
|
|
async def _remove_fleet_service(
|
|
repo: BaseRepository, decky_name: str, service_name: str,
|
|
) -> list[str]:
|
|
config, compose_path = _fleet_state_or_raise()
|
|
decky = _fleet_find_decky(config, decky_name)
|
|
services: list[str] = list(decky.services or [])
|
|
if service_name not in services:
|
|
raise ServiceMutationError(
|
|
f"service {service_name!r} not on decky {decky_name!r}"
|
|
)
|
|
services = [s for s in services if s != service_name]
|
|
target = f"{decky_name}-{service_name}"
|
|
await anyio.to_thread.run_sync(
|
|
lambda: _compose("stop", target, compose_file=compose_path),
|
|
)
|
|
await anyio.to_thread.run_sync(
|
|
lambda: _compose("rm", "-f", target, compose_file=compose_path),
|
|
)
|
|
await _persist_fleet_change(repo, decky, services, compose_path)
|
|
return services
|
|
|
|
|
|
# ---------------------------------------------------------- public api
|
|
|
|
|
|
async def add_service(
|
|
repo: BaseRepository,
|
|
*,
|
|
decky_kind: DeckyKind,
|
|
decky_name: str,
|
|
service_name: str,
|
|
topology_id: Optional[str] = None,
|
|
) -> list[str]:
|
|
"""Add *service_name* to a deployed decky.
|
|
|
|
Validates the service registry (rejects unknown / fleet_singleton
|
|
names), persists the change, regenerates the compose file, runs
|
|
``up -d --no-deps --build <decky>-<service>`` in a worker thread,
|
|
and publishes ``decky.<name>.service.added`` on the bus.
|
|
|
|
Returns the post-mutation services list.
|
|
"""
|
|
_validate_service_for_per_decky(service_name)
|
|
if decky_kind == "topology":
|
|
if not topology_id:
|
|
raise ServiceMutationError(
|
|
"decky_kind=topology requires topology_id",
|
|
)
|
|
services = await _add_topology_service(
|
|
repo, topology_id, decky_name, service_name,
|
|
)
|
|
elif decky_kind == "fleet":
|
|
services = await _add_fleet_service(repo, decky_name, service_name)
|
|
else: # pragma: no cover — Literal narrows
|
|
raise ServiceMutationError(f"unknown decky_kind {decky_kind!r}")
|
|
|
|
await _publish(
|
|
topics.decky(decky_name, topics.DECKY_SERVICE_ADDED),
|
|
{
|
|
"decky_name": decky_name,
|
|
"service_name": service_name,
|
|
"topology_id": topology_id,
|
|
"services": services,
|
|
},
|
|
)
|
|
log.info(
|
|
"services_live.add decky=%s topology=%s service=%s",
|
|
decky_name, topology_id, service_name,
|
|
)
|
|
return services
|
|
|
|
|
|
async def update_service_config(
|
|
repo: BaseRepository,
|
|
*,
|
|
decky_kind: DeckyKind,
|
|
decky_name: str,
|
|
service_name: str,
|
|
cfg: dict,
|
|
apply: bool = False,
|
|
topology_id: Optional[str] = None,
|
|
) -> dict:
|
|
"""Persist ``cfg`` as the new ``service_config[service_name]`` for a decky.
|
|
|
|
The submitted dict is validated against the service's
|
|
``config_schema`` (unknown keys dropped, types coerced) BEFORE any
|
|
DB write, so a 400-class failure leaves zero side-effects.
|
|
|
|
``apply=False`` (Save): only the DB row + compose file are updated.
|
|
The running container keeps its old env.
|
|
``apply=True`` (Apply): same persistence, then a force-recreate of
|
|
``<decky>-<service>`` so the container picks
|
|
up the new env. Destructive: drops any
|
|
in-container session state on that service.
|
|
|
|
Returns the post-mutation validated cfg.
|
|
"""
|
|
svc = _validate_service_for_per_decky(service_name)
|
|
validated = svc.validate_cfg(cfg)
|
|
if decky_kind == "topology":
|
|
if not topology_id:
|
|
raise ServiceMutationError(
|
|
"decky_kind=topology requires topology_id",
|
|
)
|
|
await _update_topology_service_config(
|
|
repo, topology_id, decky_name, service_name, validated, apply=apply,
|
|
)
|
|
elif decky_kind == "fleet":
|
|
await _update_fleet_service_config(
|
|
repo, decky_name, service_name, validated, apply=apply,
|
|
)
|
|
else: # pragma: no cover
|
|
raise ServiceMutationError(f"unknown decky_kind {decky_kind!r}")
|
|
|
|
await _publish(
|
|
topics.decky(decky_name, topics.DECKY_SERVICE_CONFIG_CHANGED),
|
|
{
|
|
"decky_name": decky_name,
|
|
"service_name": service_name,
|
|
"topology_id": topology_id,
|
|
"service_config": validated,
|
|
"recreated": bool(apply),
|
|
},
|
|
)
|
|
log.info(
|
|
"services_live.update_config decky=%s topology=%s service=%s apply=%s",
|
|
decky_name, topology_id, service_name, apply,
|
|
)
|
|
return validated
|
|
|
|
|
|
async def _update_topology_service_config(
|
|
repo: BaseRepository,
|
|
topology_id: str,
|
|
decky_name: str,
|
|
service_name: str,
|
|
validated: dict,
|
|
*,
|
|
apply: bool,
|
|
) -> None:
|
|
decky = await _topology_decky(repo, topology_id, decky_name)
|
|
if service_name not in (decky.get("services") or []):
|
|
raise ServiceMutationError(
|
|
f"service {service_name!r} not on decky {decky_name!r}"
|
|
)
|
|
cfg_blob = dict(decky.get("decky_config") or {})
|
|
sc = dict(cfg_blob.get("service_config") or {})
|
|
sc[service_name] = validated
|
|
cfg_blob["service_config"] = sc
|
|
await repo.update_topology_decky(decky["uuid"], {"decky_config": cfg_blob})
|
|
compose_path = await _rerender_topology_compose(repo, topology_id)
|
|
if apply:
|
|
target = f"{decky_name}-{service_name}"
|
|
await anyio.to_thread.run_sync(
|
|
lambda: _compose(
|
|
"up", "-d", "--no-deps", "--force-recreate", "--build", target,
|
|
compose_file=compose_path,
|
|
),
|
|
)
|
|
|
|
|
|
async def _update_fleet_service_config(
|
|
repo: BaseRepository,
|
|
decky_name: str,
|
|
service_name: str,
|
|
validated: dict,
|
|
*,
|
|
apply: bool,
|
|
) -> None:
|
|
config, compose_path = _fleet_state_or_raise()
|
|
decky = _fleet_find_decky(config, decky_name)
|
|
if service_name not in (decky.services or []):
|
|
raise ServiceMutationError(
|
|
f"service {service_name!r} not on decky {decky_name!r}"
|
|
)
|
|
sc = dict(getattr(decky, "service_config", None) or {})
|
|
sc[service_name] = validated
|
|
decky.service_config = sc
|
|
_save_state(config, compose_path)
|
|
_write_compose(config, compose_path)
|
|
from decnet.web.db.models import LOCAL_HOST_SENTINEL
|
|
await repo.upsert_fleet_decky({
|
|
"host_uuid": getattr(decky, "host_uuid", None) or LOCAL_HOST_SENTINEL,
|
|
"name": decky.name,
|
|
"services": list(decky.services or []),
|
|
"decky_config": decky.model_dump(mode="json"),
|
|
"decky_ip": decky.ip,
|
|
"state": "running",
|
|
})
|
|
if apply:
|
|
target = f"{decky_name}-{service_name}"
|
|
await anyio.to_thread.run_sync(
|
|
lambda: _compose(
|
|
"up", "-d", "--no-deps", "--force-recreate", "--build", target,
|
|
compose_file=compose_path,
|
|
),
|
|
)
|
|
|
|
|
|
async def remove_service(
|
|
repo: BaseRepository,
|
|
*,
|
|
decky_kind: DeckyKind,
|
|
decky_name: str,
|
|
service_name: str,
|
|
topology_id: Optional[str] = None,
|
|
) -> list[str]:
|
|
"""Remove *service_name* from a deployed decky.
|
|
|
|
Stops + removes the service container, persists the new services
|
|
list, re-renders the compose file (so the next ``up -d`` doesn't
|
|
bring it back), and publishes ``decky.<name>.service.removed``.
|
|
|
|
Returns the post-mutation services list.
|
|
"""
|
|
if decky_kind == "topology":
|
|
if not topology_id:
|
|
raise ServiceMutationError(
|
|
"decky_kind=topology requires topology_id",
|
|
)
|
|
services = await _remove_topology_service(
|
|
repo, topology_id, decky_name, service_name,
|
|
)
|
|
elif decky_kind == "fleet":
|
|
services = await _remove_fleet_service(repo, decky_name, service_name)
|
|
else: # pragma: no cover
|
|
raise ServiceMutationError(f"unknown decky_kind {decky_kind!r}")
|
|
|
|
await _publish(
|
|
topics.decky(decky_name, topics.DECKY_SERVICE_REMOVED),
|
|
{
|
|
"decky_name": decky_name,
|
|
"service_name": service_name,
|
|
"topology_id": topology_id,
|
|
"services": services,
|
|
},
|
|
)
|
|
log.info(
|
|
"services_live.remove decky=%s topology=%s service=%s",
|
|
decky_name, topology_id, service_name,
|
|
)
|
|
return services
|