mirror of
https://github.com/hoshikawa2/agent_platform_oci.git
synced 2026-07-09 22:04:21 +00:00
21 lines
548 B
YAML
21 lines
548 B
YAML
apiVersion: batch/v1
|
|
kind: CronJob
|
|
metadata:
|
|
name: agent-framework-evaluator
|
|
spec:
|
|
schedule: "0 2 * * *"
|
|
suspend: true
|
|
concurrencyPolicy: Forbid
|
|
jobTemplate:
|
|
spec:
|
|
template:
|
|
spec:
|
|
restartPolicy: Never
|
|
containers:
|
|
- name: evaluator
|
|
image: agent-framework-evaluator:latest
|
|
command: ["python", "-m", "evaluator.cli", "run-agents", "--source", "langfuse"]
|
|
envFrom:
|
|
- secretRef:
|
|
name: agent-framework-evaluator-env
|