Hello everyone ! I updated prefect to `2.1.1` ves...
# best-practices
n
Hello everyone ! I updated prefect to
2.1.1
vesrion and when deploying my flows using kubernestes-job as infrastructure, im having this error below with
manifest_path
argument
Copy code
manifest_path
  none is not an allowed value (type=type_error.none.not_allowed)
is it mendatory to set the
manisfest_path
? Here is my deployment def
Copy code
deployment = Deployment.build_from_flow(
flow=my_flow,
name="tes-deployment",
version="1",
work_queue_name="kubernetes",
tags=["dev"],
ignorefile='.prefectignore',
storage=storage,
infrastructure=infra
)
1
a
it's only kept for backwards compatibility, if you upgrade to the latest version, you don't have to worry about manifest.json
n
Hello Anna, thank you for your response I already tested with prefect
2.3.1
, but still have the same error with
manifest_path
arg : /
a
Can you try the same using prefect deployment CLI?