2

我有一个想要使用 ARM 模板部署到 Azure 的 Kubernetes 应用程序。我创建了一个 Helm 图表,用于将应用程序部署到 Kubernetes,理想情况下,我希望 ARM 模板在创建 AKS 集群后调用 Helm 来部署应用程序。

有谁知道这样做的方法?我注意到有一个从预配的 VM 调用脚本的扩展名,创建的 AKS 是否有类似的扩展名?

4

1 回答 1

0
  1. if the ARM template should be the "orchestrator", use Custom Script Extension, but this requires you to provision a VM for you script to run on.

  2. write a script, deploy ARM template, then call helm install.

  3. consider your use case, if possible. K8s cluster should be considered "infrastructure", and should be deployed separately from "application" in most real-world cases.

I am not aware of any other possibilities ...

于 2018-11-02T19:31:06.617 回答