Files
devstar_introduction/k8s/job.yaml
yinxue 97ad55a919
Some checks failed
CI Pipeline / build (push) Failing after 1m39s
修改cicd
2025-08-11 19:42:48 +08:00

16 lines
438 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
apiVersion: batch/v1
kind: Job
metadata:
name: todolist-job
spec:
template:
metadata:
labels:
app: todolist
spec:
restartPolicy: Never # Job 通常不重启失败的 Pod可以根据需求改为 OnFailure
containers:
- name: todolist-container
image: crpi-s56ujsdigakae3xq.cn-hangzhou.personal.cr.aliyuncs.com/uniquespace/todolist:latest
ports:
- containerPort: 3000