1

我正在尝试在我的 kubernetes 集群中设置 cronjobs,我有将数据从另一个 api 导入我的数据库的微服务。我想每 10 分钟运行一次这个命令。我有以下 cronjob 清单

apiVersion: v1
items:
- apiVersion: batch/v1beta1
  kind: CronJob
  metadata:
    labels:
      chart: cronjobs-0.1.0
    name: cron-cronjob1
    namespace: default
  spec:
    concurrencyPolicy: Forbid
    failedJobsHistoryLimit: 1
    jobTemplate:      
      spec:
        template:
          metadata:          
            labels:
              app: cron
              cron: cronjob1
          spec:
            containers:
              command: ["/usr/local/bin/php"]
              args: ["artisan bulk:import"]
              env:
              - name: DB_CONNECTION
                value: postgres
              - name: DB_HOST
                value: postgres
              - name: DB_PORT
                value: "5432"
              - name: DB_DATABASE
                value: xxx
              - name: DB_USERNAME
                value: xxx
              - name: DB_PASSWORD
                value: xxxx
              - name: APP_KEY
                value: xxxxx
              image: registry.xxxxx.com/xxxx:2ecb785-e927977
              imagePullPolicy: IfNotPresent
              name: cronjob1
              ports:
              - containerPort: 80
                name: http
                protocol: TCP              
            imagePullSecrets:
            - name: xxxxx
            restartPolicy: OnFailure          
            terminationGracePeriodSeconds: 30
    schedule: '* * * * *'
    successfulJobsHistoryLimit: 3

当 cronjob 调度程序启动 pod 时出现以下错误

无法打开输入文件:工匠批量:导入

如何解决这个问题?

4

2 回答 2

1

这是修复

   args:
      - "/bin/bash"
      - "-c"
      - "/var/www/html/artisan bulk:import"
于 2018-11-21T08:48:09.527 回答
1

假设文件artisan存在并且php可以执行它:

command: ["/usr/local/bin/php"]
args: ["artisan", "bulk:import"]

这样,将有两个参数传递给 php,而不是 php 假定的一个是要执行的文件。

于 2018-11-20T15:40:54.947 回答