Hi! Thanks for the huge Prefect 2.0b8! I have a qu...
# prefect-community
a
Hi! Thanks for the huge Prefect 2.0b8! I have a question regarding Deployments. Since Deployments based on
DeploymentSpec
are deprecated as of Prefect 2.0b8 release, does that mean that defining Deployments in YAML is going to also be depracated in the future? Can I still base my work on YAML?
1
a
You can, there is an example for that in the docs:
Copy code
name: my-first-deployment
flow:
    path: ./path-to-the-flow-script.py
    name: hello-world
tags:
    - foo
    - bar
parameters:
    name: "Earth"
schedule:
    interval: 3600
🙏 1