热度值清除
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.
 
 
 

22 lines
622 B

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