-
Notifications
You must be signed in to change notification settings - Fork 91
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feats docs(loops) : updated loop over a list of values #1888
base: main
Are you sure you want to change the base?
Conversation
@Adematics can you update your PR by using the ForEach task instead please ?
https://kestra.io/plugins/core/tasks/flow/io.kestra.plugin.core.flow.foreach |
Alright then, I would check it out. @Ben8t |
Hey @Adematics, did you make any progress here? Let us know if you need a hand! |
Hello @wrussell1999 , I haven't yet updated. sorry for the delay. I will keep you updated when I do. I will get it updated before weekend. |
Hello @wrussell1999 @Ben8t Kindly look into the Here is an image of the issue: |
@Adematics looks like there might be an issue with the plugins on your Kestra instance. I was able to get the same example without the error you had on the latest version of the |
I did find an error when executing it on |
Ok I will look into it and send any update |
I just checked it out again, and I am still getting the same error. This is the version I am using with docker kestra:
image: kestra/kestra:latest-full
pull_policy: always
entrypoint: /bin/bash
# Note that this is meant for development only. Refer to the documentation for production deployments of Kestra which runs without a root user.
user: "root"
command:
- -c
- /app/kestra server standalone --worker-thread=128
volumes:
- kestra-data:/app/storage
- /var/run/docker.sock:/var/run/docker.sock
- /tmp/kestra-wd:/tmp/kestra-wd
environment:
KESTRA_CONFIGURATION: |
datasources:
postgres:
url: jdbc:postgresql://postgres:5432/kestra
driverClassName: org.postgresql.Driver
username: kestra
password: k3str4
kestra:
server:
basic-auth:
enabled: false
username: admin
password: kestra
repository:
type: postgres
storage:
type: minio
minio:
endpoint: http://minio
port: 9000
accessKey: admin
secretKey: password
region: us-east-1
bucket: warehouse
queue:
type: postgres
tasks:
tmp-dir:
path: /tmp/kestra-wd/tmp
url: http://localhost:8080/
ports:
- "8080:8080"
- "8081:8081"
depends_on:
postgres:
condition: service_started
networks:
kestra_net:
|
pull request addresses issue #1744 task 2