2026-01-13 04:27:16 +00:00
|
|
|
apiVersion: batch/v1
|
2026-02-03 01:56:09 +00:00
|
|
|
kind: CronJob
|
2026-01-13 04:27:16 +00:00
|
|
|
metadata:
|
2026-02-03 01:56:09 +00:00
|
|
|
name: analyst-gemma
|
|
|
|
|
namespace: customer1
|
2026-01-13 04:27:16 +00:00
|
|
|
spec:
|
2026-02-03 01:56:09 +00:00
|
|
|
schedule: "15 * * * *"
|
2026-01-13 04:27:16 +00:00
|
|
|
jobTemplate:
|
|
|
|
|
spec:
|
|
|
|
|
template:
|
2026-02-03 01:56:09 +00:00
|
|
|
spec:
|
2026-01-16 20:33:37 +00:00
|
|
|
containers:
|
2026-02-03 01:56:09 +00:00
|
|
|
- name: analyst
|
2026-03-23 20:25:51 +00:00
|
|
|
image: siriussec/summarizerlocal:3.5
|
2026-02-03 15:05:21 +00:00
|
|
|
imagePullPolicy: Always
|
2026-02-03 01:56:09 +00:00
|
|
|
env:
|
|
|
|
|
- name: DB_PASSWORD
|
|
|
|
|
valueFrom:
|
|
|
|
|
secretKeyRef:
|
2026-03-22 19:24:53 +00:00
|
|
|
name: news-app-password
|
2026-02-03 01:56:09 +00:00
|
|
|
key: password
|
|
|
|
|
envFrom:
|
|
|
|
|
- configMapRef:
|
2026-02-03 15:05:21 +00:00
|
|
|
name: gemma-config
|
2026-02-03 01:56:09 +00:00
|
|
|
|
|
|
|
|
restartPolicy: OnFailure
|
2026-02-04 01:44:28 +00:00
|
|
|
|