特定于云提供商的配置可以通过将云提供商名称设置为一个部分来在配置文件中分隔。
定义配置文件
在 src 包中创建一个配置文件 - config.ini 并定义类似于下面的云提供商特定配置。
[aws] bucket_name: test-aws-bucket [gcp] bucket_name: test-gcp-bucket
登录后复制
阅读代码中的配置
从环境变量中读取云提供商。
cloud_provider = os.environ.get('cloud_provider')
在python中声明一个配置解析器并读取配置文件
config = configparser.ConfigParser() config_path = os.path.join(os.path.dirname(__file__), 'config.ini') config.read(config_path) bucket_name = config.get(cloud_provider,'bucket_name')
登录后复制
通过这种方式,我们可以在配置文件中分离云提供商的特定配置。
如有任何建议/反馈,请随时发表评论。
以上就是Read cloud specific configuration from configuration files的详细内容,更多请关注其它相关文章!
Article Links:https://www.hinyin.com/n/178979.html
Article Source:admin
Article Copyright:除非特别标注,否则均为本站原创文章,转载时请以链接形式注明文章出处。