demo additionnal content for the future
This commit is contained in:
40
algos-demo/argo-workflow-chu.yaml
Normal file
40
algos-demo/argo-workflow-chu.yaml
Normal file
@@ -0,0 +1,40 @@
|
||||
apiVersion: argoproj.io/v1alpha1
|
||||
kind: Workflow
|
||||
metadata:
|
||||
name: chu-pipeline
|
||||
namespace: default
|
||||
spec:
|
||||
entrypoint: chu-steps
|
||||
|
||||
volumeClaimTemplates:
|
||||
- metadata:
|
||||
name: chu-data
|
||||
spec:
|
||||
accessModes: ["ReadWriteOnce"]
|
||||
resources:
|
||||
requests:
|
||||
storage: 1Gi
|
||||
|
||||
templates:
|
||||
- name: chu-steps
|
||||
steps:
|
||||
- - name: chu-statistics
|
||||
template: chu-statistics
|
||||
- - name: chu-analyzer
|
||||
template: chu-analyzer
|
||||
|
||||
- name: chu-statistics
|
||||
container:
|
||||
image: opencloudregistry/chu-statistics:latest
|
||||
command: ["chu-statistics"]
|
||||
volumeMounts:
|
||||
- name: chu-data
|
||||
mountPath: /data
|
||||
|
||||
- name: chu-analyzer
|
||||
container:
|
||||
image: opencloudregistry/chu-analyzer:latest
|
||||
command: ["chu-analyzer"]
|
||||
volumeMounts:
|
||||
- name: chu-data
|
||||
mountPath: /data
|
||||
Reference in New Issue
Block a user