Files
dancefetcher/k8s/deploy.yaml
T
argoyle cfe50f4db3
dancefetcher / build (pull_request) Successful in 4m36s
dancefetcher / deploy-prod (pull_request) Has been skipped
ci: migrate from GitLab CI to Gitea Actions
- Add Gitea Actions workflow (.gitea/workflows/ci.yaml)
- Update K8s deployment image registry to oci.unbound.se
2026-01-07 16:39:19 +01:00

26 lines
622 B
YAML

apiVersion: batch/v1
kind: CronJob
metadata:
labels:
app.kubernetes.io/name: dancefetcher
name: dancefetcher
spec:
schedule: '0 0 * * *'
concurrencyPolicy: Forbid
jobTemplate:
spec:
template:
spec:
containers:
- name: dancefetcher
image: oci.unbound.se/dancefinder/dancefetcher:${COMMIT}
imagePullPolicy: Always
resources:
limits:
cpu: 600m
memory: 200Mi
requests:
cpu: 20m
memory: 30Mi
restartPolicy: OnFailure