一、Job
1 Job可以干什么
Job可以干什么?在容器启动或退出时做一些任务。Job可以并行执行。
1、需要等待后执行的任务
2、导入SQL文件
3、创建用户、清理表
........等等
示例:
cat job-pi.yaml apiVersion: batch/v1 kind: Job metadata: labels: job-name: echo-pi name: echo-pi namespace: default spec: #suspend: true # 1.21+ #ttlSecondsAfterFinished: 100 backoffLimit: 4 completions: 10 parallelism: 3 template: spec: containers: - name: pi image: perl:5.34.0 command: ["perl", "-Mbignum=bpi", "-wle", "print bpi(2000)"] imagePullPolicy: Always resources: {} restartPolicy: Never
查看job:
注意事项:
二、CronJob
CronJob用于以时间为基准周期性地执行任务,这些自动化任务和运行在Linux或UNIX系统上的CronJob一样。CronJob对于创建定期和重复任务非常有用,例如执行备份任务、周期性调度程序接口、发送电子邮件等。
对于Kubernetes 1.8以前的版本,需要添加--runtime-config=batch/v2alpha1=true参数至APIServer中,然后重启APIServer和Controller Manager用于启用API,对于1.8以后的版本无须修改任何参数,可以直接使用,本节的示例基于1.8以上的版本。
2.1 创建CronJob
创建CronJob有两种方式,一种是直接使用kubectl创建,一种是使用yaml文件创建。
使用kubectl创建CronJob的命令如下:
kubectl run hello --schedule="*/1 * * * *" --restart=OnFailure --image=busybox -- /bin/sh -c "date; echo Hello from the Kubernetes cluster"
对应的yaml文件如下:
apiVersion: batch/v1beta1 kind: CronJob metadata: name: hello spec: schedule: "*/1 * * * *" jobTemplate: spec: template: spec: containers: - name: hello image: busybox args: - /bin/sh - -c - date; echo Hello from the Kubernetes cluster restartPolicy: OnFailure
本例创建一个每分钟执行一次、打印当前时间和Hello from the Kubernetes cluster的计划任务。
查看创建的CronJob:
kubectl get cj
kubectl logs hello-27779598-pzznh
2.2 CronJob参数
2.3 suspend参数测试
apiVersion: batch/v1beta1 kind: CronJob metadata: name: hello spec: schedule: "*/1 * * * *" suspend: true #加上suspend参数 jobTemplate: spec: template: spec: containers: - name: hello image: busybox args: - /bin/sh - -c - date; echo Hello from the Kubernetes cluster restartPolicy: OnFailure
再次查看cronjob,超过1分钟后,也没有继续执行:
查看是否被挂起:
kubectl get cronjob/hello -oyaml
恢复挂起:
kubectl patch cronjob/hello --type=strategic --patch '{"spec":{"suspend":false}}'
再次查看是否被挂起:
标签:kubectl,CronJob,name,--,hello,进阶篇,Affinity,K8S,spec From: https://www.cnblogs.com/skyflask/p/16829271.html