I have recently started working on Docker, K8s and Argo. I am currently working on creating 2 containerized applications and then link them up in such a way that they can run on Argo. The 2 containerized applications would be as follows:
ReadDataFromAFile
: This container would have the code that would receive a url/file with some random names. It would separate out all those names and return an array/list of names.PrintData
: This container would accept the list of names and then print them out with some business logic involved.
I am currently not able to understand how to:
- Pass text/file to the
ReadData
Container. - Pass on the processed array of names from the first container to the second container.
I have to write an Argo Workflow that would regularly perform these steps!