[archived] "Hello World" docs discussion #12767
Replies: 2 comments 4 replies
-
Unfortunately docker/whalesay seems to be deprecated. I get this error when trying this Workflow:
|
Beta Was this translation helpful? Give feedback.
2 replies
-
I found an alternative config that (sort of) works: apiVersion: argoproj.io/v1alpha1
kind: Workflow # new type of k8s spec
metadata:
generateName: hello-world- # name of the workflow spec
spec:
entrypoint: argosay # invoke the whalesay template
templates:
- name: argosay # name of the template
container:
container:
image: argoproj/argosay:v2
args: [ echo, "hello" ]
resources: # limit the resources
limits:
memory: 32Mi
cpu: 100m The created pod completes successfully and prints the message but I get this error on the Workflow:
So it looks like this issue: #12733 |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
en/latest/walk-through/hello-world/
https://argo-workflows.readthedocs.io/en/latest/walk-through/hello-world/
Beta Was this translation helpful? Give feedback.
All reactions