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>
13 lines
362 B
YAML
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"
|