From 659131c821fac3d388b45f2970283be1bb957220 Mon Sep 17 00:00:00 2001 From: Clement Verna Date: Thu, 25 Apr 2019 11:55:22 +0200 Subject: [PATCH] mdapi: fix the path of the script executed by the cronjob Signed-off-by: Clement Verna --- roles/openshift-apps/mdapi/files/cron.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/openshift-apps/mdapi/files/cron.yml b/roles/openshift-apps/mdapi/files/cron.yml index 51595338d3..0e1892eb82 100644 --- a/roles/openshift-apps/mdapi/files/cron.yml +++ b/roles/openshift-apps/mdapi/files/cron.yml @@ -4,7 +4,7 @@ metadata: name: mdapi spec: concurrencyPolicy: Forbid - schedule: "50 * * * *" + schedule: "20 * * * *" jobTemplate: spec: template: @@ -15,7 +15,7 @@ spec: containers: - name: mdapi image: docker-registry.default.svc:5000/mdapi/mdapi:latest - command: ["bash", "-c", "/code/mdapi/mdapi-get_repo_md /etc/mdapi/mdapi.cfg; echo failed"] + command: ["bash", "-c", "/code/mdapi-get_repo_md /etc/mdapi/mdapi.cfg; echo failed"] volumeMounts: - name: config-volume mountPath: /etc/mdapi