apiVersion: argoproj.io/v1alpha1
kind: CronWorkflow
metadata:
name: cron-clean-workflows
namespace: argo
spec:
schedules:
- "0 9 * * *"
timezone: Asia/Shanghai
successfulJobsHistoryLimit: 3
failedJobsHistoryLimit: 1
workflowSpec:
serviceAccountName: argo-agent
imagePullSecrets:
- name: secrets
entrypoint: cron-clean-workflows
templates:
- name: cron-clean-workflows
container:
image: argo-base:v1.0_20250324
command: ["/bin/sh", "-c"]
args:
- |-
argo delete --older 7d -n argo
https://argo-workflows.readthedocs.io/en/latest/cron-workflows/#cron-workflows
