1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
apiVersion: batch/v1beta1 kind: CronJob metadata: name: hx-python-jiage namespace: dev spec: schedule: "2 16 * * *" jobTemplate: spec: template: spec: containers: - name: hx-python-jiage image: 10.9.127.243:30002/library/hx-python-jiage:1.0 imagePullPolicy: IfNotPresent restartPolicy: OnFailure
|