2026-03-26 02:41:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
apiVersion: batch/v1
|
|
|
|
|
kind: CronJob
|
|
|
|
|
metadata:
|
|
|
|
|
name: deepseek-analyst-v1.2
|
|
|
|
|
namespace: customer1
|
|
|
|
|
spec:
|
|
|
|
|
schedule: "15 * * * *"
|
|
|
|
|
jobTemplate:
|
|
|
|
|
spec:
|
|
|
|
|
template:
|
|
|
|
|
spec:
|
|
|
|
|
containers:
|
|
|
|
|
- name: analyst
|
2026-03-31 02:35:26 +00:00
|
|
|
image: siriussec/summarizerlocal:3.8
|
2026-03-26 02:41:18 +00:00
|
|
|
imagePullPolicy: Always
|
|
|
|
|
env:
|
|
|
|
|
- name: DB_PASSWORD
|
|
|
|
|
valueFrom:
|
|
|
|
|
secretKeyRef:
|
|
|
|
|
name: news-app-password
|
|
|
|
|
key: password
|
|
|
|
|
envFrom:
|
|
|
|
|
- configMapRef:
|
|
|
|
|
name: deepseek-config
|
|
|
|
|
resources:
|
|
|
|
|
requests:
|
|
|
|
|
cpu: "1"
|
|
|
|
|
memory: "4Gi"
|
|
|
|
|
restartPolicy: OnFailure
|