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:d8f749b8876fb6eea1759376bdae50216dbd7753 imagePullPolicy: Always env: - name: JM_ENVIRONMENT value: master # imagePullPolicy: IfNotPresent restartPolicy: OnFailure imagePullSecrets: - name: internal-harbor