gpt4 book ai didi

azure - 使用 azure-sdk-for-python 将节点部署到 AKS 集群

转载 作者:行者123 更新时间:2023-12-02 11:32:42 27 4
gpt4 key购买 nike

到目前为止,我无法找到任何用于在 AKS 群集中创建节点的 Azure 库。我可以使用 azure cli,但我的目标是使用 python。

我可以使用 azure python SDK 创建资源和资源组 - resource_groups.create_or_update('azure-sample-group', resource_group_params)

有人能给我指出正确的文档或一些提示吗?我感谢您的所有帮助。

最佳答案

你可以做到,here's the docs对于您正在寻找的方法。 Here's the SDK code对于同样的东西。型号 Managed Clusters

示例代码类似于:

from azure.mgmt.containerservice import ContainerServiceClient # needed to create client
containerservice_client = ContainerServiceClient(get_credentials(), SUBSCRIPTION) # same way like you would for the resource_management_client
parameters = ManagedCluster(
location=location,
dns_prefix=dns_prefix,
kubernetes_version=kubernetes_version,
tags=stags,
service_principal_profile=service_principal_profile, # this needs to be a model as well
agent_pool_profiles=agent_pools, # this needs to be a model as well
linux_profile=linux_profile, # this needs to be a model as well
enable_rbac=true
)
containerservice_client.managed_clusters.create_or_update(resource_group, name, parameters)

关于azure - 使用 azure-sdk-for-python 将节点部署到 AKS 集群,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54468025/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com