apiVersion: batch/v1 kind: CronJob metadata: name: hotspot-clear-job namespace: master spec: schedule: "*/1 * * * *" # 10分钟 # schedule: "0 * * * *" # 一小时 successfulJobsHistoryLimit: 3 failedJobsHistoryLimit: 1 jobTemplate: spec: template: spec: containers: - name: hotspot-clear image: harbor.homieyy.com/job/master/hotspot-clear:bc69c493d2e25b8a3507aa450e9b27d97e2310a3 imagePullPolicy: Always env: - name: JM_ENVIRONMENT value: master # imagePullPolicy: IfNotPresent restartPolicy: OnFailure imagePullSecrets: - name: internal-harbor