otto
2 years ago
2 changed files with 16 additions and 12 deletions
@ -1,16 +1,20 @@
|
||||
apiVersion: batch/v1 |
||||
kind: Job |
||||
apiVersion: batch/v1beta1 |
||||
kind: CronJob |
||||
metadata: |
||||
name: room-hot-compute-job |
||||
namespace: dev |
||||
spec: |
||||
ttlSecondsAfterFinished: 10 |
||||
activeDeadlineSeconds: 10 |
||||
schedule: "*/1 * * * *" |
||||
jobTemplate: |
||||
spec: |
||||
template: |
||||
spec: |
||||
containers: |
||||
- name: room-hot-compute-job |
||||
image: registry.internal.jumaiyx.cn/job/room-hot-compute:v1.0.0 |
||||
restartPolicy: Never |
||||
imagePullPolicy: IfNotPresent |
||||
command: |
||||
- ./server |
||||
restartPolicy: OnFailure |
||||
imagePullSecrets: |
||||
- name: registry-harbor |
Loading…
Reference in new issue