热度值清除
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
720 B

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