How automatically read ingestion yaml from folder by openmetadata? #19888
-
I am looking at h Does openmetadata support to read all ingestions yaml file from just folder? For exmaple I deploy openmetadata and put all configs into folder that added to openmetadata pod. In this case I will always have versionized deployment and can use IaC. May be there are some workarounds? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
OpenMetadata does not natively support reading all ingestion YAML files from a folder in a single command. You can achieve this by using a script to iterate over the YAML files in a directory and execute the metadata ingest -c command for each file. This approach allows you to maintain versioned deployments and use Infrastructure as Code (IaC) practices.
This script will loop through all YAML files in the specified directory and run the ingestion command for each one. You can integrate this script into your deployment process to automate the ingestion of multiple configurations. |
Beta Was this translation helpful? Give feedback.
OpenMetadata does not natively support reading all ingestion YAML files from a folder in a single command. You can achieve this by using a script to iterate over the YAML files in a directory and execute the metadata ingest -c command for each file. This approach allows you to maintain versioned deployments and use Infrastructure as Code (IaC) practices.
This script will loop through all YAML files in the specified directory and run the ingestion com…