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