What methods are folks using to send custom Kubern...
# prefect-community
i
What methods are folks using to send custom Kubernetes job templates to a
kubernetes-job
infrastructure block in Prefect 2.0? In 1.0, we could accomplish this by using the
KubernetesRun
module and passing it like so:
KubernetesRun(job_template_path="my/local/path.yaml")
It seems like we can try to mimic the functionality in 2.0 by using some hacks to pipe the output from our job template .yaml file, represent it as a one-line JSON string then force that output into
--override job=
but this doesn’t seem ideal.