You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.3 KiB
Go
47 lines
1.3 KiB
Go
package k8s
|
|
|
|
var jobTmeplate = `apiVersion: batch/v1beta1
|
|
kind: CronJob
|
|
metadata:
|
|
name: {{.name}}
|
|
namespace: {{.namespace}}
|
|
spec:
|
|
successfulJobsHistoryLimit: {{.successfulJobsHistoryLimit}}
|
|
schedule: "{{.schedule}}"
|
|
jobTemplate:
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: {{.name}}
|
|
image: registry-vpc.cn-hangzhou.aliyuncs.com/{{.namespace}}/
|
|
env:
|
|
- name: aliyun_logs_k8slog
|
|
value: "stdout"
|
|
- name: aliyun_logs_k8slog_tags
|
|
value: "stage={{.env}}"
|
|
- name: aliyun_logs_k8slog_format
|
|
value: "json"
|
|
resources:
|
|
limits:
|
|
cpu: {{.limitCpu}}m
|
|
memory: {{.limitMem}}Mi
|
|
requests:
|
|
cpu: {{.requestCpu}}m
|
|
memory: {{.requestMem}}Mi
|
|
command:
|
|
- ./{{.serviceName}}
|
|
- -f
|
|
- ./{{.name}}.json
|
|
volumeMounts:
|
|
- name: timezone
|
|
mountPath: /etc/localtime
|
|
imagePullSecrets:
|
|
- name: {{.namespace}}
|
|
restartPolicy: OnFailure
|
|
volumes:
|
|
- name: timezone
|
|
hostPath:
|
|
path: /usr/share/zoneinfo/Asia/Shanghai
|
|
`
|