本文介绍了如何使用PyChef进行“刀客户端删除"和“刀客户端创建"?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
等效翻译是什么:
knife client delete notcool.my.com
knife client create cool.my.com
在 PyChef 中?
推荐答案
from chef import autoconfigure, Client
api = autoconfigure()
Client.delete('notcool.my.com')
Client.create('cool.my.com')
这篇关于如何使用PyChef进行“刀客户端删除"和“刀客户端创建"?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!