如何在 Azure 中创建多主集群
How to create a multi-master cluster in Azure
我需要创建一个具有 3 个主节点的 Azure Kubernetes 服务。到目前为止,我曾经使用单主集群,现在我需要为生产环境创建一个多主集群。
我能找到创建具有多个控制平面的 AKS 的方法吗?提前致谢。
作为Soundarya mentioned in the comment, the solution could be fould here:
As your ask is on AKS (Managed service from Azure) with HA enabled Clusters you already have more than one master running. As AKS is a managed offering service you will will not have the visibility/control on this.
Can I get a way to create an AKS with multiple control planes?
For this you can check the AKS Uptime SLA, Uptime SLA guarantees 99.95% availability of the Kubernetes API server endpoint for clusters.
Please check this document for more details.
If you are using AKS Engine (unmanaged service), then you can specify the number of masters. Please refer to this document for more details.
我需要创建一个具有 3 个主节点的 Azure Kubernetes 服务。到目前为止,我曾经使用单主集群,现在我需要为生产环境创建一个多主集群。
我能找到创建具有多个控制平面的 AKS 的方法吗?提前致谢。
作为Soundarya mentioned in the comment, the solution could be fould here:
As your ask is on AKS (Managed service from Azure) with HA enabled Clusters you already have more than one master running. As AKS is a managed offering service you will will not have the visibility/control on this. Can I get a way to create an AKS with multiple control planes?
For this you can check the AKS Uptime SLA, Uptime SLA guarantees 99.95% availability of the Kubernetes API server endpoint for clusters.
Please check this document for more details. If you are using AKS Engine (unmanaged service), then you can specify the number of masters. Please refer to this document for more details.