Hi, I want to use a task with multiple containers ...
# ask-the-community
g
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(...)
)
...
m
Install -> https://pypi.org/project/flytekitplugins-pod/ Then
Copy code
from flytekitplugins.pod import Pod
g
Thanks @Michael Tinsley. It worked