Ansible部署Azure功能

时间:2019-11-03 23:56:43

标签: azure function deployment ansible

任何人都有很好的资料(带有示例),如何使用Ansible部署Azure Functions?

我已经阅读了azure_rm_functionapp上的官方文档,但是对于Ansible如何引用需要部署的代码仍然很模糊...

谢谢

1 个答案:

答案 0 :(得分:2)

如果要使用Ansible和Azure Pipelines,可以参考以下博客:Automating Infrastructure Deployments in the Cloud with Ansible and Azure Pipelines

对于其他资源控制,目前ansible不支持指定Local Git部署选项或其他资源。

因此,您可以使用azure cliAzure Functions Core Tools来部署代码。以下是一些示例:

az functionapp部署源config-zip

az functionapp deployment source config-zip \
-g {myRG}} -n {myAppName} \
--src {zipFilePathLocation}

功能核心工具部署(项目文件)

func azure functionapp publish <FunctionAppName>