Azure IaC (5)Azure IaC desired state configuration配置
Azure IaC (5)Azure IaC desired state configuration配置
Azure IaC (5)Azure IaC desired state configuration配置
Azure IaC (4.2)Azure Automation Account 集成devops
本文介绍使用Azure资源管理器模版创建资源-理论
本文介绍:使用Azure 命令行工具创建Azure资源案例 在本例子中,我们讲使用Azure CLI 和Azure PowerShell 通过资源管理器模版创建一台windows 虚拟机。
本文介绍在不同的Azure Container Registry同步Image。 原理: 用户push image 到source ACR; source ACR 通过 webhook向外发布通知(通知中包含用户上传的image名称,tag等); target 中构建functions接受通知(解析得到 image host,image name,image tag等); functions 中使用powershell脚本执行 Import-AzContainerRegistryImage 命令从source 导入到target ACR中; functions至少同时可以连接 source ACR和target ACR,对于source ACR,本例子使用用户名和密码连接,对于 target ACR使用service principal; Azure Functions( …
本文介绍使用vs code及其插件创建ARM模版
本文介绍 使用Azure 命令行工具创建Azure资源-理论 包含 Azure CLI介绍; Azure PowerShell介绍; 如何选择Auzre CLI和Azure PowerShell; Azure CLI和Auzre PowerShell在windows系统上的安装;
本文介绍如何创建Service Bus Topic Trigger。
本文参考: 在 Linux 上使用自定义映像创建 Azure Functions | Microsoft Docs 完成本文,需要先安装 Azure Functions的开发工具和Docker 相关工具,不再赘述,可参见本博客其他文章。 命令行下执行如下命令创建Azure Functions 的基础文件夹结构和 docker file等文件: Functions-container>func init --worker-runtime dotnet --docker 执行如下命令,创建functions 代码: func new --name FuncServiceBusTriggerDemo --template "Service Bus Topic trigger" 创建完成后,观察文件夹: 需要配置的地方: 代码中的,三个参数依次为 主题名称,订阅名 …