在Taurus中,是否可以使用外部属性文件来指定属性?
我读过this,但没有找到解决方案。
我担心的是,我在现有的user.properties中有大约40个属性,并且不想在YAML文件中移动它们。
发布于 2018-08-24 22:59:38
直接不需要,但是您可以在单独的YAML或JSON文件中定义属性,并将include it定义到主YAML配置中,如下所示:
included-configs:
- properties.yml # the file containing your properties definitionshttps://stackoverflow.com/questions/52006769
复制相似问题