- pipeline edge transforms: stages can declare accepted_transforms, edges carry a transform dict, runner injects per-stage and nodes apply (e.g. invert_mask before edge detection); editable from UI via PUT /config/edge-transform - rename mpr-ui-framework -> soleprint-ui (now an external package synced via .spr from /home/mariano/wdir/spr); add @vue-flow/core and uplot to detection-app so linked package resolves them - Tiltfile guards kubectl context, k8s commands pin --context kind-mpr - kind-config: gateway on hostPort 30080 (Caddy fronts mpr.local.ar) - modelgen: pyproject.toml, .spr marker, dict default_factory support
16 lines
392 B
YAML
16 lines
392 B
YAML
kind: Cluster
|
|
apiVersion: kind.x-k8s.io/v1alpha4
|
|
name: mpr
|
|
nodes:
|
|
- role: control-plane
|
|
extraPortMappings:
|
|
# Gateway → routed via Caddy on port 80 (mpr.local.ar, k8s.mpr.local.ar)
|
|
- containerPort: 30080
|
|
hostPort: 30080
|
|
listenAddress: "127.0.0.1"
|
|
protocol: TCP
|
|
# Redis
|
|
- containerPort: 30379
|
|
hostPort: 6382
|
|
protocol: TCP
|