无法使用 ACS-Engine 创建 Windows agentPool

Unable to create Windows agentPool with ACS-Engine

我正在尝试设置 ACS-EngineKubernetes 的混合。我能够成功设置 Linux agentPool。当我添加 Windows agentPool 时,我收到一条错误消息。我只在 osTypeWindows.

时得到这个

我正在使用以下设置代理池:

"agentPoolProfiles": [
  {
    "name": "linuxpool1",
    "count": 3,
    "vmSize": "Standard_D2_v2",
    "availabilityProfile": "AvailabilitySet",
    "osType": "Linux"
  },
  {
    "name": "windowspool2",
    "count": 3,
    "vmSize": "Standard_D2_v2",
    "availabilityProfile": "AvailabilitySet",
    "osType": "Windows"
  }
],

包含 Windows agentPool 时,我收到以下错误:

MacBook-Pro:acs-engine appalachios$ ./acs-engine -artifacts zeuscluster zeus_deploy_v1.json 
acsengine took 2.42314ms
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x8 pc=0x112a551]

goroutine 1 [running]:
github.com/Azure/acs-engine/pkg/api/vlabs.
(*Properties).Validate(0xc420070420, 0x4ce, 0x6ce)
/Users/appalachios/gopath/src/github.com/Azure/acs-
engine/pkg/api/vlabs/validate.go:241 +0x471
github.com/Azure/acs-engine/pkg/api.LoadContainerService(0xc420077500, 0x4ce, 0x6ce, 
0xc4200159f0, 0x5, 0x0, 0x0, 0x6ce)
/Users/appalachios/gopath/src/github.com/Azure/acs-engine/pkg/api/apiloader.go:73 +0x398
github.com/Azure/acs-engine/pkg/api.DeserializeContainerService(0xc420077500, 0x4ce, 0x6ce, 0x4ce, 0x6ce, 0x0, 0x0, 0x1271fc0)
/Users/appalachios/gopath/src/github.com/Azure/acs-engine/pkg/api/apiloader.go:30 +0x13a
github.com/Azure/acs-engine/pkg/api.LoadContainerServiceFromFile(0x7fff5fbffbfc, 0x13, 0x0, 0x0, 0x0, 0x0, 0x10b7510)
/Users/appalachios/gopath/src/github.com/Azure/acs-engine/pkg/api/apiloader.go:20 +0x1bd
main.main()
/Users/appalachios/gopath/src/github.com/Azure/acs-engine/acs-engine.go:205 +0x3c2

我猜您的输入 API 模型中可能缺少 windowsProfile。例如:

"windowsProfile": {
  "adminUsername": "azureuser",
  "adminPassword": "replacepassword1234$"
}

我会将反馈 return 在这种情况下提供更好的错误消息。但是你能确认你的 API 模型中是否有你生成模板的 windowsProfile 吗?