Hi, I want to use a task with multiple containers ...
# flyte-support
i
Hi, I want to use a task with multiple containers as mentioned here https://docs.flyte.org/projects/cookbook/en/latest/auto_examples/k8s_pod_plugin/pod.html#multiple-containers How can I import
Pod
to write the task_config
Copy code
@task(
task_config=Pod(...)
)
...
g
Install -> https://pypi.org/project/flytekitplugins-pod/ Then
Copy code
from flytekitplugins.pod import Pod
i
Thanks @gray-ocean-62145. It worked
🙌 1