search
HomeBackend DevelopmentGolangAzure golang SDK - Assign AcrPull role to AKS cluster
Azure golang SDK - Assign AcrPull role to AKS clusterFeb 10, 2024 pm 09:39 PM
Containerized applications

Azure golang SDK - 将 AcrPull 角色分配给 AKS 群集

php editor Xinyi introduces to you an important function in Azure golang SDK: assigning the AcrPull role to the AKS cluster. This feature can help developers manage and use container images more conveniently on the Azure cloud platform. By using the golang SDK, developers can easily assign the AcrPull role to the AKS cluster, thereby enabling the function of pulling and using private container images in the cluster. This not only improves the efficiency of developing and deploying containerized applications, but also enhances security and controllability, providing developers with a better user experience.

Question content

After creating the AKS cluster and ACR, I now try to programmatically grant the AcrPull role to the AKS cluster. Currently I'm trying to do this using the RoleAssignmentsClient.Create() function from the golang SDK.

Here's what I've tried so far:

<code>AcrPullDefinitionID := "/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d"
//         pulled that ^ off of: https://learn.microsoft.com/en-us/azure/role-based-access-control/built-in-roles#acrpull

providerNamespace := "/providers/Microsoft.ContainerService/managedClusters/"

scope := "/subscriptions/" + subscriptionID + "/resourceGroups/" + resourceGroupName + providerNamespace + resourceName
res, err := raClient.Create(ctx, scope, roleAssigmentName, armauthorization.RoleAssignmentCreateParameters{
        Properties: &armauthorization.RoleAssignmentProperties{
            PrincipalID:      to.Ptr(clientID),
            PrincipalType:    to.Ptr(armauthorization.PrincipalTypeServicePrincipal),
            RoleDefinitionID: to.Ptr("/subscriptions/" + subscriptionID + AcrPullDefinitionID),
    },
}, nil)
</code>

When I make the call with the above values, I get the following error:

for resource: {AKSClusterName} of type: /providers/Microsoft.ContainerService/managedClusters/
Unable to create roleAssignment: PUT https://management.azure.com/subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.ContainerService/managedClusters/{AKSClusterName}/providers/Microsoft.Authorization/roleAssignments/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d
--------------------------------------------------------------------------------
RESPONSE 405: 405 Method Not Allowed
ERROR CODE UNAVAILABLE
--------------------------------------------------------------------------------
{
  "message": "The requested resource does not support http method 'PUT'."
}
--------------------------------------------------------------------------------

I'm not sure if this is a conceptual misunderstanding or if I'm just using the API incorrectly.

Any and all help would be greatly appreciated. Thanks!

Solution

The range you are pointing to appears to be incorrect. When applying RBAC permissions, you need to set the scope to the resource to which the RBAC policy applies.

So if you are applying an RBAC policy for your AKS cluster to have AcrPull permissions, the scope should be set to the resource ID of the Azure Container Registry.

The above is the detailed content of Azure golang SDK - Assign AcrPull role to AKS cluster. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:stackoverflow. If there is any infringement, please contact admin@php.cn delete
如何在Debian 12上安装Snap如何在Debian 12上安装SnapMar 20, 2024 pm 08:51 PM

Snap是一个针对Linux系统设计的外部包管理器,它为您提供了安装容器化应用程序的便捷途径。通过Snap,您可以轻松地下载和安装软件包,无需担心安装额外的依赖项。该管理器会自动解决软件包所需的依赖项,确保软件包能够在您的系统上顺利运行。Snap与本地的apt包管理器相辅相成,为您提供了另一种在系统中安装和运行应用程序的选择。在本指南中,您将找到有关如何在Debian12上安装Snap的完整指南。提纲:如何在Debian12上安装Snap如何在Snap上查找包可用性如何在Snap上查找有关包的信

如何调试docker-compose?配置路径在哪里设置?如何调试docker-compose?配置路径在哪里设置?Feb 10, 2024 pm 12:48 PM

我正在尝试调试docker-compose,即这个Go文件,以解决某些问题(这个)。为此,我设置了一个GoLang调试器gorunmain.go-f/.../project_root/docker-compose.yml-f/.../project_root/folder1/docker-compose.ymlconfig的输出符合预期,合并的配置文件.由于某种原因,我找不到代码中设置的配置文件,尽管它们必须设置在某个地方,因为输出是正确合并的配置文件。我怀疑它们一定就设置

五个精选的Go语言开源项目,带你探索技术世界五个精选的Go语言开源项目,带你探索技术世界Jan 30, 2024 am 09:08 AM

在当今科技快速发展的时代,编程语言也如雨后春笋般涌现出来。其中一门备受瞩目的语言就是Go语言,它以其简洁、高效、并发安全等特性受到了许多开发者的喜爱。Go语言以其强大的生态系统而著称,其中有许多优秀的开源项目。本文将介绍五个精选的Go语言开源项目,带领读者一起探索Go语言开源项目的世界。KubernetesKubernetes是一个开源的容器编排引擎,用于自

使用 Kubernetes、Helm 和 Jenkins 轻松实现 CI/CD 管道自动化使用 Kubernetes、Helm 和 Jenkins 轻松实现 CI/CD 管道自动化Apr 02, 2024 pm 04:12 PM

在快节奏的软件开发环境中,快速发布版本至关重要。CI/CD(持续集成和持续部署)管道可以自动化部署过程,简化代码从开发到生产的转移。本文重点介绍如何在 Kubernetes 环境中使用 Jenkins、Helm 和 Kubernetes 设置完全自动化的 CI/CD 管道,包括:环境设置、自动化管道构建和部署到开发、登台和生产环境的步骤。通过实施这一自动化流程,开发人员可以专注于代码开发,同时将复杂的基础设施管理留给自动化,从而提高部署效率和可靠性。

适合网络工程师的 6 个最佳 Linux 发行版适合网络工程师的 6 个最佳 Linux 发行版Feb 05, 2024 pm 05:20 PM

作为一个网络工程师,在考虑为工作安装Linux时,你可能会面临一个问题:在成千上万个可用的Linux发行版中,应该选择哪一个呢?不用担心,你并不是孤单的。Linux作为网络工程师的常见首选操作系统,有很多发行版适合与网络相关的任务。如果你是一名网络工程师,你可能会想要知道哪些发行版在工作中提供了最佳的功能。以下是六个被网络工程师广泛推荐的优秀Linux发行版:1、Fedora在众多Linux发行版中,Fedora是网络工程师中最受推崇的之一,原因很简单。Fedora是一个开源发行版,相当于红帽企

Go语言开发的应用领域有哪些?Go语言开发的应用领域有哪些?Apr 03, 2024 am 11:33 AM

Go语言应用于以下领域:后端开发(微服务、分布式系统)云计算(云原生应用程序、容器化应用)数据处理(数据分析、大数据引擎)网络和分布式系统(代理服务器、分布式缓存)系统工具(操作系统、实用程序)

2023 年十佳 Linux 服务器发行版2023 年十佳 Linux 服务器发行版Feb 12, 2024 am 11:12 AM

由于具备多种优势,Linux操作系统是各类服务器中的热门选择。首先,它是免费(少数商业发行版除外,如RHEL和SLES)和开源的。它的开源性意味着开发者可以查看其源代码并进行修改,而且可以根据规定的许可条款重新发布。其次,通常Linux被认为是稳定、通用的,且比Windows更为安全。最后,Linux可以轻松地部署在各类平台,如裸机、虚拟机和云环境。在这篇文章中,我们重点介绍了十佳Linux服务器发行版。1、红帽企业Linux(RHEL)红帽企业Linux?www.redhat.com(R

Linux在云计算领域的广泛应用Linux在云计算领域的广泛应用Mar 20, 2024 pm 04:51 PM

Linux在云计算领域的广泛应用随着云计算技术的不断发展和普及,Linux作为一种开源操作系统在云计算领域中发挥着重要作用。由于其稳定性、安全性和灵活性,Linux系统被广泛应用于各种云计算平台和服务中,为云计算技术的发展提供了坚实的基础。本文将介绍Linux在云计算领域的广泛应用,并给出具体的代码示例。一、Linux在云计算平台中的应用虚拟化技术虚拟化技术

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),