Lines Matching full:yaml
7 This provides parsing of domains yaml file and creation of objects of the
13 import yaml
19 ## domains YAML file.
21 # The domains.yaml file is a simple list of domains from a multi image build
50 schema = yaml.safe_load(DOMAINS_SCHEMA)
63 data = yaml.safe_load(domains_yaml)
66 except (yaml.YAMLError, pykwalify.errors.SchemaError):
67 logger.critical(f'malformed domains.yaml')
76 # In the YAML data, the values for "default" and "flash_order"
85 '''Load domains from a domains.yaml file.
91 logger.critical(f'domains.yaml file not found: {domains_file}')
98 '''Load domains from a string with YAML contents.