ci / audit (push) Successful in 27s
https://projects.knownelement.com/issues/702
21 lines
948 B
Python
21 lines
948 B
Python
# Tiltfile — WORKSTATION DEV LOOP (dev-only rule: this machine never runs prod)
|
|
#
|
|
# Pairs with ADR-0001: flux remains the ONLY path to prod (git -> pfv-k8s).
|
|
# Tilt gives a fast local iteration loop for k8s-deployed services BEFORE they
|
|
# graduate to the flux-managed manifests in clusters/pfv-k8s/.
|
|
#
|
|
# Usage (on the workstation):
|
|
# tilt up # dev UI on http://localhost:10350
|
|
# tilt down
|
|
#
|
|
# By default this targets the LOCAL cluster context; point at pfv-k8s only
|
|
# with an explicit dev namespace (tilt-dev), never against prod namespaces.
|
|
|
|
# --- example dev service (uncomment + adapt per service) ---
|
|
# yaml = k8s_yaml(['dev/mcpjungle-dev.yaml'])
|
|
# k8s_resource('mcpjungle-dev', port_forwards=['18080:8080'])
|
|
|
|
# Dev-namespace guard: refuse to run against prod manifests
|
|
fail_if(cond=os.path.exists('clusters/pfv-k8s/flux-system'),
|
|
msg='This Tiltfile is for local dev only. Prod delivery = flux (do not mix).')
|