Files
foxhunt/infra/k8s/argo/events/auto-compile-configmap.yaml
jgrusewski 7844523591 feat(ci): add auto-compile ConfigMap toggle (disabled by default)
Add auto-compile-config ConfigMap with enabled=false. Document the
manual compile-deploy webhook trigger and toggle pattern in the
ci-pipeline sensor. Auto-compile can be enabled per-push by adding
a second trigger to the sensor or via manual webhook.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 09:17:52 +01:00

13 lines
362 B
YAML

apiVersion: v1
kind: ConfigMap
metadata:
name: auto-compile-config
namespace: foxhunt
labels:
app.kubernetes.io/name: auto-compile-config
app.kubernetes.io/part-of: foxhunt
data:
# Set to "true" to enable auto-compile on push to main.
# kubectl -n foxhunt patch configmap auto-compile-config -p '{"data":{"enabled":"true"}}'
enabled: "false"