From aed289317e1510aa76ee4c44fa19322204d2eced Mon Sep 17 00:00:00 2001 From: Paul Bennett Date: Sat, 13 Jul 2024 09:02:35 +0100 Subject: [PATCH] removing py-test from workflow --- kubernetes/workflows/py-test.yaml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 kubernetes/workflows/py-test.yaml diff --git a/kubernetes/workflows/py-test.yaml b/kubernetes/workflows/py-test.yaml deleted file mode 100644 index ecbf7e53..00000000 --- a/kubernetes/workflows/py-test.yaml +++ /dev/null @@ -1,19 +0,0 @@ -apiVersion: argoproj.io/v1alpha1 -kind: CronWorkflow -metadata: - name: &app py-test -spec: - schedule: "* * * * *" - timezone: "Europe/London" # Default to local machine timezone - startingDeadlineSeconds: 0 - concurrencyPolicy: "Replace" # Default to "Allow" - successfulJobsHistoryLimit: 1 - failedJobsHistoryLimit: 4 # Default 1 - suspend: false # Set to "true" to suspend scheduling - workflowSpec: - entrypoint: *app - templates: - - name: *app - container: - image: 192.168.7.210:5000/py-test:0.0.1 - imagePullPolicy: Always