BPM和Workflow有什么区别?
另外,在BPEL和ESB之间?
我参考了github代码。请找到下面的URL
我修改了脚本并执行了 terraform init。我收到以下错误。
读取 azurerm_network_interface[main] 的配置时出错:在 1:18 处解析错误:预期为“)”,但发现为“.”[0m
我的脚本:
# Configure the Microsoft Azure Provider
provider "azurerm" {
subscription_id = "xxxxxxxx"
client_id = "xxxxxxxx"
client_secret = "xxxxxxxx"
tenant_id = "xxxxxxxx"
}
# Locate the existing custom/golden image
data "azurerm_image" "search" {
name = "AZLXSPTDEVOPS01_Image"
resource_group_name = "RG-PLATFORM"
}
output "image_id" {
value = "/subscriptions/4f5c9f2a-3584-4bbd-a26e-bbf69ffbfbe6/resourceGroups/RG-EASTUS-SPT-PLATFORM/providers/Microsoft.Compute/images/AZLXSPTDEVOPS01_Image"
}
# Create a Resource Group for the new Virtual Machine.
resource "azurerm_resource_group" "main" {
name = "RG-TEST"
location = "eastus"
}
# Create …
Run Code Online (Sandbox Code Playgroud) 在微服务架构中,我正在阅读业务流程和编排的概念。选择编排和编排是否有任何指南/建议?
domain-driven-design orchestration microservices choregraphe
我目前对 Ansible 和 Kubernetes 之间的差异感到困惑。以及自动化和编排的相关术语。据我所知,自动化只是自动执行特定任务的过程。同时,编排是自动化一系列单独任务以协同工作的过程。
Ansible 可用于设置能够表示单个任务以及安装、更新或删除软件包、配置等的步骤的 Playbook。一旦您拥有 Playbook,您就可以为多个服务器及其应具有的软件定义状态通过您的剧本安装。但基本上,您必须告诉 Ansible 在哪台主机上应该达到什么状态。
使用像 Kubernetes 这样的编排工具,您可以简单地定义一个状态(即 3 个 x 类型的容器,2 个 y 类型的容器等)。然后软件将自动选择注释来启动您的 pod 等。
那么基本上编排(自动达到给定状态)和配置(如 Ansible)只是自动执行命令吗?
谢谢。
问候阿图尔
ansible ×1
azure ×1
business-process-management ×1
choregraphe ×1
esb ×1
image ×1
kubernetes ×1
soa ×1
terraform ×1
workflow ×1