5

Azure Kubernetes Service

 1 year ago
source link: https://techcommunity.microsoft.com/t5/apps-on-azure-blog/dapr-ml-gitops-extensions-ga-on-aks/ba-p/3423296?WT_mc_id=DOP-MVP-4025064
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Dapr, Machine Learning, and Gitops on Azure Kubernetes Services

Dapr, ML, Gitops Extensions GA on AKS

Published May 24 2022 12:29 PM 1,214 Views

We are excited to announce the General Availability of three new capabilities being enabled on AKS – Dapr , Azure Machine Learning and GitOps. These capabilities can be enabled on AKS clusters through a feature called cluster extensions. 

Cluster extensions provide an at-scale mechanism to deploy, update and manage the lifecycle of services represented by extension instances running on your AKS clusters. With this capability, management of these services can be done through tools like the Azure CLI and the Azure SDKs. Let's use the rest of the blog to walk you through what each of these new capabilities enable.  



What are AKS cluster extensions?  

Cluster extensions provide an Azure Resource Manager (ARM) driven experience for installation and lifecycle management of Azure services and supported open-source projects on AKS clusters. Dapr, Azure ML and GitOps are the first set of extension offerings to be deployed and managed through cluster extensions on AKS. Cluster extensions provide users with a unified experience to install, update, and upgrade supported services. Users can install a specific version and upgrade supported service versions through manual upgrade or auto upgrade options.   

Cluster extensions expose a set of standard operations through the Azure CLI. Refer to the Azure CLI documentation and the AKS cluster extensions documentation for more details.   



# Install   az k8s-extension create   # Update   az k8s-extension update   # Delete az k8s-extension delete   



Dapr cluster extension 

The Distributed Application Runtime (Dapr) is a set of incrementally adoptable APIs that simplify the authoring of distributed, microservice-based applications. For example, Dapr provides capabilities for enabling application intercommunication, whether through messaging via pubsub or reliable and secure service-to-service calls. Dapr APIs, also referred to as building blocks, are built on best practice industry standards, that: 

The AKS Dapr extension provisions Dapr on your AKS cluster, eliminating the overhead of downloading any Dapr tooling and manually installing and managing the Dapr runtime on your AKS cluster. The extension offers a fully supported version of Dapr and integrates with all native Dapr configuration capabilities through simple command-line arguments. 



The following command deploys the Dapr extension on an AKS cluster: 

az k8s-extension create --extension-type Microsoft.Dapr \  --cluster-type managedClusters \  --cluster-name myAKSCluster \  --resource-group myResourceGroup \  --name myDaprExtension \  --version X.X.X.X  



You have the option of allowing Dapr to auto-update its minor version by specifying the --auto-upgrade-minor-version parameter and setting the value to true:  

--auto-upgrade-minor-version true  



The following command shows a snapshot of the installed Dapr extension:  

az k8s-extension show --cluster-type managedClusters \ --cluster-name myAKSCluster \ --resource-group myResourceGroup \ --name myDaprExtension 



The managed cluster id shows DaprExtension present and the command: kubectl get namespace yields the following: 



thumbnail image 1 of blog post titled                                              Dapr, ML, Gitops Extensions GA on AKS


Dapr uses “Smart defaults” and installs in High Availability environment as the recommendation for production environments. 



kubectl get pods -n dapr-system yields the following 



thumbnail image 2 of blog post titled                                              Dapr, ML, Gitops Extensions GA on AKS
 

For more detailed instructions, please refer to the Dapr cluster extension for AKS documentation.  



Azure Machine Learning cluster extension   

The Azure ML cluster extension for AKS is a machine learning operator that is deployed and managed on AKS using the cluster extension CLI. The Azure ML operator configures and attaches AKS clusters to Azure Machine Learning workspaces in order to train and manage machine learning models. Upon deploying the Azure ML cluster extension on AKS, the cluster can be attached as compute type to run training and inference models in your ML workspace.   



The design for the Azure ML extension helps IT operators leverage native Kubernetes concepts such as namespaces, node selectors, and resources requests/limits for ML compute utilization and optimization. By letting the IT operator manage the Azure ML compute setup, the Azure ML extension creates a seamless experience for data science professionals who do not need to learn or use Kubernetes directly.   



Azure Kubernetes Service clusters enables enterprises to run highly available ML and deep learning models with GPU compute.  



The following command deploys the Azure ML extension on an AKS cluster: 

az k8s-extension create --extension-type Microsoft.AzureML.Kubernetes \  --cluster-type managedClusters \  --cluster-name myAKSCluster \  --resource-group myResourceGroup \  --name amlarc-compute \  --configuration-settings enableTraining=True \  --scope cluster  

For more detailed instructions, please refer to the Azure ML cluster extension for AKS documentation.  



GitOps Flux cluster extension 

Teams running modern, cloud-native applications need reliable, automated processes for managing Kubernetes cluster configuration and application lifecycle.  GitOps is a technique for implementing continuous deployment for these applications and configurations and focuses on using tools and processes developers and cluster admins are familiar with, like Git and pull requests.  GitOps enables infrastructure as code, where the state of the environment is declaratively described in Git repositories.  Changes to the workload environment, such as an application update, happen via pull request to the Git repository, after which Flux, running in each cluster, automatically syncs the changes and applies them to the cluster.  Flux also continuously assures that the cluster remains in the declared state.  GitOps enables accurate change management and audit, as cluster state and all changes are fully visible in the Git repository.  It also enhances cluster security, as developers and deployment tools don’t need direct access to clusters.  In short, GitOps is the modern way to manage continuous deployment for modern workloads, and Azure GitOps with Flux brings this capability to you. 

Azure uses open source CNCF Flux to enable GitOps in Azure Kubernetes Service (AKS) clusters.  Azure provides simple install, automatic update, and health reporting to simplify your use of GitOps across one to thousands of clusters. 

GitOps with Flux v2 is enabled as a cluster extension to your AKS clusters.  The Flux extension installs the Flux controllers in the clusters.  



thumbnail image 3 of blog post titled                                              Dapr, ML, Gitops Extensions GA on AKS


thumbnail image 4 of blog post titled                                              Dapr, ML, Gitops Extensions GA on AKS


 After Flux is enabled, you can then create one or more GitOps configurations in each cluster which enable the connections to your Git repositories and the deployment of the resources defined in the repositories.   



thumbnail image 5 of blog post titled                                              Dapr, ML, Gitops Extensions GA on AKS


 Azure GitOps with Flux v2 supports multi-tenancy.  If you have multiple teams sharing clusters, you may have one Flux configuration pointing to the cluster admin team repository to lay down the baseline security configurations and management apps on each cluster at the cluster level; and then you may have one or more Flux configurations with namespace scoping which point to application team repositories to install the applications created by the various groups in your company. 

Importantly, in Azure you can track the compliance state of the deployments in each cluster to assure that the clusters are in the state you declared in your Git repositories.  This gives you the observability you need to assure healthy cluster state. 

thumbnail image 6 of blog post titled                                              Dapr, ML, Gitops Extensions GA on AKS


thumbnail image 7 of blog post titled                                              Dapr, ML, Gitops Extensions GA on AKS




thumbnail image 8 of blog post titled                                              Dapr, ML, Gitops Extensions GA on AKS




Conclusion  



The extensions above allow users to use leading Azure services like machine learning and event-driven open-source projects like Dapr on AKS through an easy deployment model. Users can also use configuration management capabilities using AKS. 



Learn more about Dapr, Azure Machine Learning and GitOps 

Learn more about the AKS roadmap    



1 Comment

‎May 24 2022 12:41 PM

Thank you @kavithagowda for Sharing with the Community 

You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.

%3CLINGO-SUB%20id%3D%22lingo-sub-3423296%22%20slang%3D%22en-US%22%3EDapr%2C%20ML%2C%20Gitops%20Extensions%20GA%20on%20AKS%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-3423296%22%20slang%3D%22en-US%22%3E%3CP%3E%3CSPAN%20data-contrast%3D%22none%22%3EWe%20are%20excited%20to%20announce%20the%20General%20Availability%20of%20three%20new%E2%80%AFcapabilities%E2%80%AFbeing%20enabled%E2%80%AFon%20AKS%20%E2%80%93%E2%80%AF%3C%2FSPAN%3E%3CSPAN%20data-contrast%3D%22none%22%3EDapr%E2%80%AF%2C%20%3C%2FSPAN%3E%3CA%20href%3D%22https%3A%2F%2Fazure.microsoft.com%2Fen-us%2Fservices%2Fmachine-learning%2F%22%20target%3D%22_blank%22%20rel%3D%22noopener%20noreferrer%22%3E%3CSPAN%20data-contrast%3D%22none%22%3EAzure%20Machine%20Learnin%3C%2FSPAN%3E%3C%2FA%3E%3CSPAN%20data-contrast%3D%22none%22%3Eg%20and%20%3C%2FSPAN%3E%3CA%20href%3D%22https%3A%2F%2Fdocs.microsoft.com%2Fen-us%2Fazure%2Farchitecture%2Fexample-scenario%2Fgitops-aks%2Fgitops-blueprint-aks%22%20target%3D%22_blank%22%20rel%3D%22noopener%20noreferrer%22%3E%3CSPAN%20data-contrast%3D%22none%22%3EGitOps%3C%2FSPAN%3E%3C%2FA%3E%3CSPAN%20data-contrast%3D%22none%22%3E.%E2%80%AFThese%E2%80%AFcapabilities%E2%80%AFcan%20be%20enabled%20on%20AKS%20clusters%20through%20a%E2%80%AFfeature%E2%80%AFcalled%E2%80%AF%3C%2FSPAN%3E%3CSTRONG%3E%3CSPAN%20data-contrast%3D%22none%22%3Ecluster%20extensions.%3C%2FSPAN%3E%3C%2FSTRONG%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-contrast%3D%22none%22%3ECluster%20extensions%E2%80%AFprovide%20an%20at-scale%20mechanism%20to%20deploy%2C%20update%20and%20manage%20the%20lifecycle%20of%20services%20represented%20by%20extension%20instances%20running%20on%20your%E2%80%AFAKS%E2%80%AFclusters.%E2%80%AFWith%20this%20capability%2C%20management%E2%80%AFof%E2%80%AFthese%20services%E2%80%AFcan%20be%20done%20through%E2%80%AFtools%E2%80%AFlike%E2%80%AFthe%E2%80%AFAzure%20CLI%20and%E2%80%AFthe%20Azure%E2%80%AFSDKs.%E2%80%AFLet's%E2%80%AFuse%20the%20rest%20of%20the%20blog%20to%E2%80%AFwalk%20you%20through%E2%80%AFwhat%20each%20of%20these%20new%20capabilities%E2%80%AFenable.%E2%80%AF%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-contrast%3D%22none%22%3E%E2%80%AF%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSTRONG%3E%3CSPAN%20data-contrast%3D%22none%22%3EWhat%20are%20AKS%20cluster%E2%80%AFextensions%3F%E2%80%AF%3C%2FSPAN%3E%3C%2FSTRONG%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-contrast%3D%22none%22%3ECluster%20extensions%20provide%20an%20Azure%20Resource%20Manager%E2%80%AF(ARM)%E2%80%AFdriven%20experience%20for%20installation%20and%20lifecycle%20management%20of%E2%80%AFAzure%E2%80%AFservices%E2%80%AFand%E2%80%AFsupported%20open-source%E2%80%AFprojects%E2%80%AFon%20AKS%20clusters.%E2%80%AFDapr%2C%E2%80%AFAzure%E2%80%AFML%20and%20GitOps%20are%E2%80%AFthe%E2%80%AFfirst%E2%80%AFset%20of%E2%80%AFextension%E2%80%AFofferings%E2%80%AFto%20be%20deployed%20and%20managed%E2%80%AFthrough%E2%80%AFcluster%20extensions%E2%80%AFon%20AKS.%E2%80%AFCluster%20extensions%E2%80%AFprovide%20users%E2%80%AFwith%E2%80%AFa%E2%80%AFunified%20experience%20to%20install%2C%20update%2C%20and%E2%80%AFupgrade%E2%80%AFsupported%20services.%E2%80%AFUsers%E2%80%AFcan%E2%80%AFinstall%E2%80%AFa%E2%80%AFspecific%20version%20and%20upgrade%E2%80%AFsupported%E2%80%AFservice%E2%80%AFversions%20through%20manual%E2%80%AFupgrade%E2%80%AFor%20auto%20upgrade%E2%80%AFoptions.%E2%80%AF%E2%80%AF%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-contrast%3D%22none%22%3ECluster%20extensions%20expose%E2%80%AFa%20set%20of%20standard%20operations%20through%20the%20Azure%20CLI.%20Refer%20to%20the%E2%80%AF%3C%2FSPAN%3E%3CA%20href%3D%22https%3A%2F%2Fdocs.microsoft.com%2Fcli%2Fazure%2Fk8s-extension%3Fview%3Dazure-cli-latest%2522%2520HYPERLINK%2520%2522https%3A%2F%2Fdocs.microsoft.com%2Fcli%2Fazure%2Fk8s-extension%3Fview%3Dazure-cli-latest%22%20target%3D%22_blank%22%20rel%3D%22noopener%20noreferrer%22%3E%3CSPAN%20data-contrast%3D%22none%22%3EAzure%20CLI%20documentation%3C%2FSPAN%3E%3C%2FA%3E%3CSPAN%20data-contrast%3D%22none%22%3E%E2%80%AFand%20the%E2%80%AF%3C%2FSPAN%3E%3CA%20href%3D%22https%3A%2F%2Fdocs.microsoft.com%2Fazure%2Faks%2Fcluster-extensions%3Ftabs%3Dazure-cli%22%20target%3D%22_blank%22%20rel%3D%22noopener%20noreferrer%22%3E%3CSPAN%20data-contrast%3D%22none%22%3EAKS%20cluster%20extensions%E2%80%AFdocumentation%3C%2FSPAN%3E%3C%2FA%3E%3CSPAN%20data-contrast%3D%22none%22%3E%E2%80%AFfor%20more%20details.%E2%80%AF%E2%80%AF%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-contrast%3D%22none%22%3E%E2%80%AF%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CFONT%20color%3D%22%230000FF%22%3E%3CSPAN%20data-contrast%3D%22none%22%3E%23%20Install%E2%80%AF%E2%80%AF%3C%2FSPAN%3E%3CSPAN%3E%26nbsp%3B%3CBR%20%2F%3E%3C%2FSPAN%3E%3CSPAN%20data-contrast%3D%22none%22%3Eaz%E2%80%AFk8s-extension%20create%E2%80%AF%E2%80%AF%3C%2FSPAN%3E%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%3E%3CBR%20%2F%3E%3C%2FSPAN%3E%3CSPAN%20data-contrast%3D%22none%22%3E%23%20Update%E2%80%AF%E2%80%AF%3C%2FSPAN%3E%3CSPAN%3E%26nbsp%3B%3CBR%20%2F%3E%3C%2FSPAN%3E%3CSPAN%20data-contrast%3D%22none%22%3Eaz%E2%80%AFk8s-extension%20update%E2%80%AF%E2%80%AF%3C%2FSPAN%3E%3CSPAN%3E%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%3E%3CBR%20%2F%3E%3C%2FSPAN%3E%3CSPAN%20data-contrast%3D%22none%22%3E%23%20Delete%3C%2FSPAN%3E%3CSPAN%3E%26nbsp%3B%3CBR%20%2F%3E%3C%2FSPAN%3E%3CSPAN%20data-contrast%3D%22none%22%3Eaz%E2%80%AFk8s-extension%20delete%E2%80%AF%E2%80%AF%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A180%2C%26quot%3B335559740%26quot%3B%3A240%2C%26quot%3B469777462%26quot%3B%3A%5B916%2C1832%2C2748%2C3664%2C4580%2C5496%2C6412%2C7328%2C8244%2C9160%2C10076%2C10992%2C11908%2C12824%2C13740%2C14656%5D%2C%26quot%3B469777927%26quot%3B%3A%5B0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%5D%2C%26quot%3B469777928%26quot%3B%3A%5B1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%5D%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FFONT%3E%3C%2FP%3E%0A%3CP%3E%26nbsp%3B%3C%2FP%3E%0A%3CP%3E%3CSTRONG%3E%3CSPAN%20data-contrast%3D%22none%22%3EDapr%E2%80%AFcluster%E2%80%AFextension%3C%2FSPAN%3E%3C%2FSTRONG%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-contrast%3D%22auto%22%3EThe%20Distributed%20Application%20Runtime%20(%3C%2FSPAN%3E%3CA%20href%3D%22https%3A%2F%2Fnam06.safelinks.protection.outlook.com%2F%3Furl%3Dhttps%253A%252F%252Fdocs.dapr.io%252Fconcepts%252Foverview%252F%26amp%3Bdata%3D05%257C01%257Cbobmital%2540microsoft.com%257C9eee80905e194633448108da2d2d3e30%257C72f988bf86f141af91ab2d7cd011db47%257C1%257C0%257C637871969583438192%257CUnknown%257CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%253D%257C3000%257C%257C%257C%26amp%3Bsdata%3D%252FF%252B0dMEt03Z166fvkHVTrlWqiPw6xl%252FvFw7Nlbp7tAs%253D%26amp%3Breserved%3D0%22%20target%3D%22_blank%22%20rel%3D%22noopener%20nofollow%20noreferrer%22%3E%3CSPAN%3EDapr%3C%2FSPAN%3E%3C%2FA%3E%3CSPAN%20data-contrast%3D%22auto%22%3E)%20is%20a%20set%20of%20incrementally%20adoptable%20APIs%20that%20simplify%20the%20authoring%20of%20distributed%2C%20microservice-based%20applications.%20For%20example%2C%20Dapr%20provides%20capabilities%20for%20enabling%20application%20intercommunication%2C%20whether%20through%20messaging%20via%20pubsub%20or%20reliable%20and%20secure%20service-to-service%20calls.%E2%80%AFDapr%20APIs%2C%20also%20referred%20to%20as%20building%20blocks%2C%20are%20built%20on%20best%20practice%20industry%20standards%2C%20that%3A%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A240%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CUL%3E%0A%3CLI%20data-leveltext%3D%22%EF%82%B7%22%20data-font%3D%22Symbol%22%20data-listid%3D%221%22%20data-list-defn-props%3D%22%7B%26quot%3B335552541%26quot%3B%3A1%2C%26quot%3B335559684%26quot%3B%3A-2%2C%26quot%3B335559685%26quot%3B%3A720%2C%26quot%3B335559991%26quot%3B%3A360%2C%26quot%3B469769226%26quot%3B%3A%26quot%3BSymbol%26quot%3B%2C%26quot%3B469769242%26quot%3B%3A%5B8226%5D%2C%26quot%3B469777803%26quot%3B%3A%26quot%3Bleft%26quot%3B%2C%26quot%3B469777804%26quot%3B%3A%26quot%3B%EF%82%B7%26quot%3B%2C%26quot%3B469777815%26quot%3B%3A%26quot%3Bmultilevel%26quot%3B%7D%22%20aria-setsize%3D%22-1%22%20data-aria-posinset%3D%221%22%20data-aria-level%3D%221%22%3E%3CSPAN%20data-contrast%3D%22auto%22%3ESeamlessly%20fit%20with%20your%20preferred%20language%20or%20framework%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FLI%3E%0A%3CLI%20data-leveltext%3D%22%EF%82%B7%22%20data-font%3D%22Symbol%22%20data-listid%3D%221%22%20data-list-defn-props%3D%22%7B%26quot%3B335552541%26quot%3B%3A1%2C%26quot%3B335559684%26quot%3B%3A-2%2C%26quot%3B335559685%26quot%3B%3A720%2C%26quot%3B335559991%26quot%3B%3A360%2C%26quot%3B469769226%26quot%3B%3A%26quot%3BSymbol%26quot%3B%2C%26quot%3B469769242%26quot%3B%3A%5B8226%5D%2C%26quot%3B469777803%26quot%3B%3A%26quot%3Bleft%26quot%3B%2C%26quot%3B469777804%26quot%3B%3A%26quot%3B%EF%82%B7%26quot%3B%2C%26quot%3B469777815%26quot%3B%3A%26quot%3Bmultilevel%26quot%3B%7D%22%20aria-setsize%3D%22-1%22%20data-aria-posinset%3D%222%22%20data-aria-level%3D%221%22%3E%3CSPAN%20data-contrast%3D%22auto%22%3EAre%20incrementally%20adoptable%3B%20you%20can%20use%20one%2C%20several%2C%20or%20all%20of%20the%20building%20blocks%20depending%20on%20your%20needs%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A240%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FLI%3E%0A%3C%2FUL%3E%0A%3CP%3E%3CSPAN%20data-contrast%3D%22auto%22%3EThe%E2%80%AFAKS%E2%80%AFDapr%20extension%20provisions%20Dapr%20on%20your%20AKS%20cluster%2C%20eliminating%20the%20overhead%20of%20downloading%20any%20Dapr%20tooling%20and%20manually%20installing%20and%20managing%20the%20Dapr%20runtime%20on%20your%20AKS%20cluster.%20The%20extension%20offers%20a%20fully%20supported%20version%20of%20Dapr%20and%20integrates%E2%80%AFwith%E2%80%AFall%E2%80%AF%3C%2FSPAN%3E%3CSPAN%20data-contrast%3D%22none%22%3Enative%20Dapr%20configuration%20capabilities%3C%2FSPAN%3E%3CSPAN%20data-contrast%3D%22auto%22%3E%E2%80%AFthrough%20simple%20command-line%20arguments.%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20data-contrast%3D%22none%22%3E%E2%80%AF%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3EThe%E2%80%AFfollowing%E2%80%AFcommand%20deploys%E2%80%AFthe%E2%80%AFDapr%E2%80%AFextension%E2%80%AFon%E2%80%AFan%E2%80%AFAKS%E2%80%AFcluster%3A%26nbsp%3B%3C%2FP%3E%0A%3CP%3E%3CFONT%20color%3D%22%230000FF%22%3E%3CSPAN%20data-contrast%3D%22none%22%3Eaz%E2%80%AFk8s-extension%20create%E2%80%AF--extension-type%E2%80%AFMicrosoft.Dapr%E2%80%AF%5C%E2%80%AF%3C%2FSPAN%3E%3CSPAN%3E%26nbsp%3B%3CBR%20%2F%3E%3C%2FSPAN%3E%3CSPAN%20data-contrast%3D%22none%22%3E--cluster-type%E2%80%AFmanagedClusters%E2%80%AF%5C%E2%80%AF%3C%2FSPAN%3E%3CSPAN%3E%26nbsp%3B%3CBR%20%2F%3E%3C%2FSPAN%3E%3CSPAN%20data-contrast%3D%22none%22%3E--cluster-name%E2%80%AFmyAKSCluster%E2%80%AF%5C%E2%80%AF%3C%2FSPAN%3E%3CSPAN%3E%26nbsp%3B%3CBR%20%2F%3E%3C%2FSPAN%3E%3CSPAN%20data-contrast%3D%22none%22%3E--resource-group%E2%80%AFmyResourceGroup%E2%80%AF%5C%E2%80%AF%3C%2FSPAN%3E%3CSPAN%3E%26nbsp%3B%3CBR%20%2F%3E%3C%2FSPAN%3E%3CSPAN%20data-contrast%3D%22none%22%3E--name%E2%80%AFmyDaprExtension%E2%80%AF%5C%E2%80%AF%3C%2FSPAN%3E%3CSPAN%3E%26nbsp%3B%3CBR%20%2F%3E%3C%2FSPAN%3E%3CSPAN%20data-contrast%3D%22none%22%3E--version%20X.X.X.X%E2%80%AF%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A180%2C%26quot%3B335559740%26quot%3B%3A240%2C%26quot%3B469777462%26quot%3B%3A%5B916%2C1832%2C2748%2C3664%2C4580%2C5496%2C6412%2C7328%2C8244%2C9160%2C10076%2C10992%2C11908%2C12824%2C13740%2C14656%5D%2C%26quot%3B469777927%26quot%3B%3A%5B0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%5D%2C%26quot%3B469777928%26quot%3B%3A%5B1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%5D%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FFONT%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-contrast%3D%22none%22%3E%E2%80%AF%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-contrast%3D%22none%22%3EYou%20have%20the%20option%20of%20allowing%E2%80%AFDapr%E2%80%AFto%20auto-update%20its%20minor%20version%20by%20specifying%20the%E2%80%AF--auto-upgrade-minor-version%E2%80%AFparameter%20and%20setting%20the%20value%20to%E2%80%AFtrue%3A%E2%80%AF%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CFONT%20color%3D%22%230000FF%22%3E%3CSPAN%20data-contrast%3D%22none%22%3E--auto-upgrade-minor-version%20true%E2%80%AF%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A180%2C%26quot%3B335559740%26quot%3B%3A240%2C%26quot%3B469777462%26quot%3B%3A%5B916%2C1832%2C2748%2C3664%2C4580%2C5496%2C6412%2C7328%2C8244%2C9160%2C10076%2C10992%2C11908%2C12824%2C13740%2C14656%5D%2C%26quot%3B469777927%26quot%3B%3A%5B0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%5D%2C%26quot%3B469777928%26quot%3B%3A%5B1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%5D%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FFONT%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-contrast%3D%22none%22%3E%E2%80%AF%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-contrast%3D%22none%22%3EThe%20following%20command%20shows%20a%20snapshot%20of%20the%20installed%20Dapr%20extension%3A%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CFONT%20color%3D%22%230000FF%22%3E%3CSPAN%20data-contrast%3D%22none%22%3Eaz%20k8s-extension%20show%20--cluster-type%20managedClusters%20%5C%3C%2FSPAN%3E%3CSPAN%3E%26nbsp%3B%3CBR%20%2F%3E%3C%2FSPAN%3E%3CSPAN%20data-contrast%3D%22none%22%3E--cluster-name%20myAKSCluster%20%5C%3C%2FSPAN%3E%3CSPAN%3E%26nbsp%3B%3CBR%20%2F%3E%3C%2FSPAN%3E%3CSPAN%20data-contrast%3D%22none%22%3E--resource-group%20myResourceGroup%20%5C%3C%2FSPAN%3E%3CSPAN%3E%26nbsp%3B%3CBR%20%2F%3E%3C%2FSPAN%3E%3CSPAN%20data-contrast%3D%22none%22%3E--name%20myDaprExtension%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A180%2C%26quot%3B335559740%26quot%3B%3A240%2C%26quot%3B469777462%26quot%3B%3A%5B916%2C1832%2C2748%2C3664%2C4580%2C5496%2C6412%2C7328%2C8244%2C9160%2C10076%2C10992%2C11908%2C12824%2C13740%2C14656%5D%2C%26quot%3B469777927%26quot%3B%3A%5B0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%5D%2C%26quot%3B469777928%26quot%3B%3A%5B1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%5D%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FFONT%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A180%2C%26quot%3B335559740%26quot%3B%3A240%2C%26quot%3B469777462%26quot%3B%3A%5B916%2C1832%2C2748%2C3664%2C4580%2C5496%2C6412%2C7328%2C8244%2C9160%2C10076%2C10992%2C11908%2C12824%2C13740%2C14656%5D%2C%26quot%3B469777927%26quot%3B%3A%5B0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%5D%2C%26quot%3B469777928%26quot%3B%3A%5B1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%5D%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-contrast%3D%22none%22%3EThe%20managed%20cluster%20id%20shows%20DaprExtension%20present%20and%20the%20command%3A%20%3C%2FSPAN%3E%3CSTRONG%3E%3CSPAN%20data-contrast%3D%22none%22%3Ekubectl%20get%20namespace%3C%2FSPAN%3E%3C%2FSTRONG%3E%3CSPAN%20data-contrast%3D%22none%22%3E%20yields%20the%20following%3A%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-inline%22%20image-alt%3D%22kavithagowda_0-1653419394991.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3CIMG%20src%3D%22https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F374768iE5F2810C3A63D57B%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22kavithagowda_0-1653419394991.png%22%20alt%3D%22kavithagowda_0-1653419394991.png%22%20%2F%3E%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%26nbsp%3B%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-contrast%3D%22none%22%3EDapr%20uses%20%E2%80%9CSmart%20defaults%E2%80%9D%20and%20installs%20in%20High%20Availability%20environment%20as%20the%20recommendation%20for%20production%20environments.%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSTRONG%3E%3CSPAN%20data-contrast%3D%22none%22%3Ekubectl%20get%20pods%20-n%20dapr-system%3C%2FSPAN%3E%3C%2FSTRONG%3E%3CSPAN%20data-contrast%3D%22none%22%3E%20yields%20the%20following%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-inline%22%20image-alt%3D%22kavithagowda_1-1653419394996.png%22%20style%3D%22width%3A%20585px%3B%22%3E%3CIMG%20src%3D%22https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F374770iE9F1B91F23E778D0%2Fimage-dimensions%2F585x240%3Fv%3Dv2%22%20width%3D%22585%22%20height%3D%22240%22%20role%3D%22button%22%20title%3D%22kavithagowda_1-1653419394996.png%22%20alt%3D%22kavithagowda_1-1653419394996.png%22%20%2F%3E%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-contrast%3D%22none%22%3EFor%20more%20detailed%20instructions%2C%20please%20refer%20to%20the%E2%80%AF%3C%2FSPAN%3E%3CA%20href%3D%22https%3A%2F%2Freview.docs.microsoft.com%2Fen-us%2Fazure%2Faks%2Fdapr%3Fbranch%3Dpr-en-us-196643%2522%2520%5Cl%2520%2522supported-dapr-versions%2522%2520%5Ct%2520%2522_blank%22%20target%3D%22_blank%22%20rel%3D%22noopener%20noreferrer%22%3E%3CSPAN%3EDapr%E2%80%AFcluster%E2%80%AFextension%E2%80%AFfor%20AKS%20documentation%3C%2FSPAN%3E%3C%2FA%3E%3CSPAN%20data-contrast%3D%22none%22%3E.%E2%80%AF%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-contrast%3D%22none%22%3E%E2%80%AF%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSTRONG%3E%3CSPAN%20data-contrast%3D%22none%22%3EAzure%E2%80%AFMachine%E2%80%AFLearning%E2%80%AFcluster%E2%80%AFextension%E2%80%AF%E2%80%AF%3C%2FSPAN%3E%3C%2FSTRONG%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-contrast%3D%22none%22%3EThe%E2%80%AF%3C%2FSPAN%3E%3CA%20href%3D%22https%3A%2F%2Fazure.microsoft.com%2Fen-us%2Fservices%2Fmachine-learning%2F%22%20target%3D%22_blank%22%20rel%3D%22noopener%20noreferrer%22%3E%3CSPAN%20data-contrast%3D%22none%22%3EAzure%E2%80%AFML%3C%2FSPAN%3E%3C%2FA%3E%3CSPAN%20data-contrast%3D%22none%22%3E%E2%80%AFcluster%E2%80%AFextension%E2%80%AFfor%20AKS%E2%80%AFis%20a%E2%80%AFmachine%20learning%E2%80%AFoperator%E2%80%AFthat%E2%80%AFis%E2%80%AFdeployed%20and%20managed%20on%20AKS%20using%E2%80%AFthe%E2%80%AFcluster%20extension%E2%80%AFCLI.%E2%80%AFThe%20Azure%E2%80%AFML%20operator%E2%80%AFconfigures%E2%80%AFand%E2%80%AFattaches%E2%80%AFAKS%20clusters%20to%20Azure%20Machine%20Learning%20workspaces%E2%80%AFin%20order%E2%80%AFto%20train%20and%20manage%20machine%20learning%E2%80%AFmodels.%E2%80%AFUpon%20deploying%E2%80%AFthe%E2%80%AFAzure%E2%80%AFML%E2%80%AFcluster%20extension%E2%80%AFon%20AKS%2C%20the%20cluster%20can%20be%20attached%20as%20compute%20type%20to%20run%20training%20and%20inference%20models%20in%20your%20ML%20workspace.%E2%80%AF%E2%80%AF%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-contrast%3D%22none%22%3EThe%20design%20for%E2%80%AFthe%E2%80%AFAzure%E2%80%AFML%20extension%20helps%20IT%20operators%20leverage%20native%20Kubernetes%20concepts%20such%20as%20namespaces%2C%20node%20selectors%2C%20and%20resources%20requests%2Flimits%20for%20ML%20compute%20utilization%20and%20optimization.%20By%20letting%20the%20IT%20operator%20manage%E2%80%AFthe%E2%80%AFAzure%E2%80%AFML%20compute%20setup%2C%E2%80%AFthe%E2%80%AFAzure%E2%80%AFML%20extension%20creates%20a%20seamless%20experience%20for%20data%20science%20professionals%20who%20do%20not%20need%20to%20learn%20or%20use%20Kubernetes%20directly.%E2%80%AF%E2%80%AF%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-contrast%3D%22none%22%3EAzure%20Kubernetes%E2%80%AFService%E2%80%AFclusters%E2%80%AFenables%E2%80%AFenterprises%E2%80%AFto%20run%20highly%20available%20ML%20and%20deep%20learning%20models%20with%20GPU%E2%80%AFcompute.%E2%80%AF%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-contrast%3D%22none%22%3E%E2%80%AF%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3EThe%E2%80%AFfollowing%E2%80%AFcommand%20deploys%20the%E2%80%AFAzure%E2%80%AFML%20extension%20on%E2%80%AFan%E2%80%AFAKS%20cluster%3A%26nbsp%3B%3C%2FP%3E%0A%3CP%3E%3CFONT%20color%3D%22%230000FF%22%3E%3CSPAN%20data-contrast%3D%22none%22%3Eaz%E2%80%AFk8s-extension%20create%E2%80%AF--extension-type%E2%80%AFMicrosoft.AzureML.Kubernetes%E2%80%AF%5C%E2%80%AF%3C%2FSPAN%3E%3CSPAN%3E%26nbsp%3B%3CBR%20%2F%3E%3C%2FSPAN%3E%3CSPAN%20data-contrast%3D%22none%22%3E--cluster-type%E2%80%AFmanagedClusters%E2%80%AF%5C%E2%80%AF%3C%2FSPAN%3E%3CSPAN%3E%26nbsp%3B%3CBR%20%2F%3E%3C%2FSPAN%3E%3CSPAN%20data-contrast%3D%22none%22%3E--cluster-name%E2%80%AFmyAKSCluster%E2%80%AF%5C%E2%80%AF%3C%2FSPAN%3E%3CSPAN%3E%26nbsp%3B%3CBR%20%2F%3E%3C%2FSPAN%3E%3CSPAN%20data-contrast%3D%22none%22%3E--resource-group%E2%80%AFmyResourceGroup%E2%80%AF%5C%E2%80%AF%3C%2FSPAN%3E%3CSPAN%3E%26nbsp%3B%3CBR%20%2F%3E%3C%2FSPAN%3E%3CSPAN%20data-contrast%3D%22none%22%3E--name%E2%80%AFamlarc-compute%E2%80%AF%5C%E2%80%AF%3C%2FSPAN%3E%3CSPAN%3E%26nbsp%3B%3CBR%20%2F%3E%3C%2FSPAN%3E%3CSPAN%20data-contrast%3D%22none%22%3E--configuration-settings%E2%80%AFenableTraining%3DTrue%E2%80%AF%5C%E2%80%AF%3C%2FSPAN%3E%3CSPAN%3E%26nbsp%3B%3CBR%20%2F%3E%3C%2FSPAN%3E%3CSPAN%20data-contrast%3D%22none%22%3E--scope%20cluster%E2%80%AF%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A180%2C%26quot%3B335559740%26quot%3B%3A240%2C%26quot%3B469777462%26quot%3B%3A%5B916%2C1832%2C2748%2C3664%2C4580%2C5496%2C6412%2C7328%2C8244%2C9160%2C10076%2C10992%2C11908%2C12824%2C13740%2C14656%5D%2C%26quot%3B469777927%26quot%3B%3A%5B0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%2C0%5D%2C%26quot%3B469777928%26quot%3B%3A%5B1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%2C1%5D%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FFONT%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-contrast%3D%22none%22%3EFor%E2%80%AFmore%20detailed%20instructions%2C%20please%20refer%E2%80%AFto%20the%E2%80%AF%3C%2FSPAN%3E%3CA%20href%3D%22http%3A%2F%2Faka.ms%2Famlarc%2Fdoc%22%20target%3D%22_blank%22%20rel%3D%22noopener%20noreferrer%22%3E%3CSPAN%20data-contrast%3D%22none%22%3EAzure%E2%80%AFML%E2%80%AFcluster%E2%80%AFextension%3C%2FSPAN%3E%3C%2FA%3E%3CSPAN%20data-contrast%3D%22none%22%3E%E2%80%AFfor%20AKS%20documentation.%E2%80%AF%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSTRONG%3E%3CSPAN%20data-contrast%3D%22none%22%3EGitOps%20Flux%20cluster%20extension%3C%2FSPAN%3E%3C%2FSTRONG%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-contrast%3D%22none%22%3ETeams%20running%20modern%2C%20cloud-native%20applications%20need%20reliable%2C%20automated%20processes%20for%20managing%20Kubernetes%20cluster%20configuration%20and%20application%20lifecycle.%26nbsp%3B%20GitOps%20is%20a%20technique%20for%20implementing%20continuous%20deployment%20for%20these%20applications%20and%20configurations%20and%20focuses%20on%20using%20tools%20and%20processes%20developers%20and%20cluster%20admins%20are%20familiar%20with%2C%20like%20Git%20and%20pull%20requests.%26nbsp%3B%20GitOps%20enables%20%3C%2FSPAN%3E%3CA%20href%3D%22https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FInfrastructure_as_code%22%20target%3D%22_blank%22%20rel%3D%22noopener%20nofollow%20noreferrer%22%3E%3CSPAN%20data-contrast%3D%22none%22%3Einfrastructure%20as%20code%3C%2FSPAN%3E%3C%2FA%3E%3CSPAN%20data-contrast%3D%22none%22%3E%2C%20where%20the%20state%20of%20the%20environment%20is%20declaratively%20described%20in%20Git%20repositories.%26nbsp%3B%20Changes%20to%20the%20workload%20environment%2C%20such%20as%20an%20application%20update%2C%20happen%20via%20pull%20request%20to%20the%20Git%20repository%2C%20after%20which%20%3C%2FSPAN%3E%3CA%20href%3D%22https%3A%2F%2Ffluxcd.io%2F%22%20target%3D%22_blank%22%20rel%3D%22noopener%20nofollow%20noreferrer%22%3E%3CSPAN%20data-contrast%3D%22none%22%3EFlux%3C%2FSPAN%3E%3C%2FA%3E%3CSPAN%20data-contrast%3D%22none%22%3E%2C%20running%20in%20each%20cluster%2C%20automatically%20syncs%20the%20changes%20and%20applies%20them%20to%20the%20cluster.%26nbsp%3B%20Flux%20also%20continuously%20assures%20that%20the%20cluster%20remains%20in%20the%20declared%20state.%26nbsp%3B%20GitOps%20enables%20accurate%20change%20management%20and%20audit%2C%20as%20cluster%20state%20and%20all%20changes%20are%20fully%20visible%20in%20the%20Git%20repository.%26nbsp%3B%20It%20also%20enhances%20cluster%20security%2C%20as%20developers%20and%20deployment%20tools%20don%E2%80%99t%20need%20direct%20access%20to%20clusters.%26nbsp%3B%20In%20short%2C%20GitOps%20is%20the%20modern%20way%20to%20manage%20continuous%20deployment%20for%20modern%20workloads%2C%20and%20Azure%20GitOps%20with%20Flux%20brings%20this%20capability%20to%20you.%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A160%2C%26quot%3B335559740%26quot%3B%3A259%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-contrast%3D%22auto%22%3EAzure%20uses%20open%20source%20%3C%2FSPAN%3E%3CA%20href%3D%22https%3A%2F%2Fwww.cncf.io%2Fprojects%2Fflux%2F%22%20target%3D%22_blank%22%20rel%3D%22noopener%20nofollow%20noreferrer%22%3E%3CSPAN%20data-contrast%3D%22none%22%3ECNCF%20Flux%3C%2FSPAN%3E%3C%2FA%3E%3CSPAN%20data-contrast%3D%22auto%22%3E%20to%20enable%20GitOps%20in%20Azure%20Kubernetes%20Service%20(AKS)%20clusters.%26nbsp%3B%20Azure%20provides%20simple%20install%2C%20automatic%20update%2C%20and%20health%20reporting%20to%20simplify%20your%20use%20of%20GitOps%20across%20one%20to%20thousands%20of%20clusters.%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A160%2C%26quot%3B335559740%26quot%3B%3A259%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-contrast%3D%22auto%22%3EGitOps%20with%20Flux%20v2%20is%20enabled%20as%20a%20%3C%2FSPAN%3E%3CA%20href%3D%22https%3A%2F%2Fdocs.microsoft.com%2Fazure%2Fazure-arc%2Fkubernetes%2Fextensions%22%20target%3D%22_blank%22%20rel%3D%22noopener%20noreferrer%22%3E%3CSPAN%20data-contrast%3D%22none%22%3Ecluster%20extension%3C%2FSPAN%3E%3C%2FA%3E%3CSPAN%20data-contrast%3D%22auto%22%3E%20to%20your%20AKS%20clusters.%26nbsp%3B%20The%20Flux%20extension%20installs%20the%20Flux%20controllers%20in%20the%20clusters.%26nbsp%3B%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A160%2C%26quot%3B335559740%26quot%3B%3A259%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-inline%22%20image-alt%3D%22kavithagowda_2-1653419395000.png%22%20style%3D%22width%3A%20847px%3B%22%3E%3CIMG%20src%3D%22https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F374769i9CEA6498076DDE5D%2Fimage-dimensions%2F847x197%3Fv%3Dv2%22%20width%3D%22847%22%20height%3D%22197%22%20role%3D%22button%22%20title%3D%22kavithagowda_2-1653419395000.png%22%20alt%3D%22kavithagowda_2-1653419395000.png%22%20%2F%3E%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%26nbsp%3B%3C%2FP%3E%0A%3CP%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-inline%22%20image-alt%3D%22kavithagowda_3-1653419395006.png%22%20style%3D%22width%3A%20899px%3B%22%3E%3CIMG%20src%3D%22https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F374773iE316C091B0D058F4%2Fimage-dimensions%2F899x392%3Fv%3Dv2%22%20width%3D%22899%22%20height%3D%22392%22%20role%3D%22button%22%20title%3D%22kavithagowda_3-1653419395006.png%22%20alt%3D%22kavithagowda_3-1653419395006.png%22%20%2F%3E%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%26nbsp%3B%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A160%2C%26quot%3B335559740%26quot%3B%3A259%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20data-contrast%3D%22auto%22%3EAfter%20Flux%20is%20enabled%2C%20you%20can%20then%20create%20one%20or%20more%20GitOps%20configurations%20in%20each%20cluster%20which%20enable%20the%20connections%20to%20your%20Git%20repositories%20and%20the%20deployment%20of%20the%20resources%20defined%20in%20the%20repositories.%26nbsp%3B%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A160%2C%26quot%3B335559740%26quot%3B%3A259%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%26nbsp%3B%3C%2FP%3E%0A%3CP%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-inline%22%20image-alt%3D%22kavithagowda_4-1653419395011.png%22%20style%3D%22width%3A%20842px%3B%22%3E%3CIMG%20src%3D%22https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F374771i01A191F2B5D1866D%2Fimage-dimensions%2F842x173%3Fv%3Dv2%22%20width%3D%22842%22%20height%3D%22173%22%20role%3D%22button%22%20title%3D%22kavithagowda_4-1653419395011.png%22%20alt%3D%22kavithagowda_4-1653419395011.png%22%20%2F%3E%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%26nbsp%3B%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A160%2C%26quot%3B335559740%26quot%3B%3A259%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3CSPAN%20data-contrast%3D%22auto%22%3EAzure%20GitOps%20with%20Flux%20v2%20supports%20multi-tenancy.%26nbsp%3B%20If%20you%20have%20multiple%20teams%20sharing%20clusters%2C%20you%20may%20have%20one%20Flux%20configuration%20pointing%20to%20the%20cluster%20admin%20team%20repository%20to%20lay%20down%20the%20baseline%20security%20configurations%20and%20management%20apps%20on%20each%20cluster%20at%20the%20cluster%20level%3B%20and%20then%20you%20may%20have%20one%20or%20more%20Flux%20configurations%20with%20namespace%20scoping%20which%20point%20to%20application%20team%20repositories%20to%20install%20the%20applications%20created%20by%20the%20various%20groups%20in%20your%20company.%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A160%2C%26quot%3B335559740%26quot%3B%3A259%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-contrast%3D%22auto%22%3EImportantly%2C%20in%20Azure%20you%20can%20track%20the%20compliance%20state%20of%20the%20deployments%20in%20each%20cluster%20to%20assure%20that%20the%20clusters%20are%20in%20the%20state%20you%20declared%20in%20your%20Git%20repositories.%26nbsp%3B%20This%20gives%20you%20the%20observability%20you%20need%20to%20assure%20healthy%20cluster%20state.%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A160%2C%26quot%3B335559740%26quot%3B%3A259%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-inline%22%20image-alt%3D%22kavithagowda_5-1653419395014.png%22%20style%3D%22width%3A%20812px%3B%22%3E%3CIMG%20src%3D%22https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F374772iD20D887A65085DE4%2Fimage-dimensions%2F812x272%3Fv%3Dv2%22%20width%3D%22812%22%20height%3D%22272%22%20role%3D%22button%22%20title%3D%22kavithagowda_5-1653419395014.png%22%20alt%3D%22kavithagowda_5-1653419395014.png%22%20%2F%3E%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%26nbsp%3B%3C%2FP%3E%0A%3CP%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-inline%22%20image-alt%3D%22kavithagowda_6-1653419395019.png%22%20style%3D%22width%3A%20823px%3B%22%3E%3CIMG%20src%3D%22https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F374774i6F5F3ADD0EB9F2D0%2Fimage-dimensions%2F823x255%3Fv%3Dv2%22%20width%3D%22823%22%20height%3D%22255%22%20role%3D%22button%22%20title%3D%22kavithagowda_6-1653419395019.png%22%20alt%3D%22kavithagowda_6-1653419395019.png%22%20%2F%3E%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%26nbsp%3B%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A160%2C%26quot%3B335559740%26quot%3B%3A259%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-inline%22%20image-alt%3D%22kavithagowda_7-1653419395024.png%22%20style%3D%22width%3A%20848px%3B%22%3E%3CIMG%20src%3D%22https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F374775i3518576966179400%2Fimage-dimensions%2F848x193%3Fv%3Dv2%22%20width%3D%22848%22%20height%3D%22193%22%20role%3D%22button%22%20title%3D%22kavithagowda_7-1653419395024.png%22%20alt%3D%22kavithagowda_7-1653419395024.png%22%20%2F%3E%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%26nbsp%3B%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSTRONG%3E%3CSPAN%20data-contrast%3D%22none%22%3EConclusion%E2%80%AF%3C%2FSPAN%3E%3C%2FSTRONG%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-contrast%3D%22none%22%3EThe%E2%80%AFextensions%E2%80%AFabove%E2%80%AFallow%20users%20to%20use%20leading%20Azure%20services%20like%20machine%20learning%20and%20event-driven%20open-source%E2%80%AFprojects%20like%E2%80%AFDapr%E2%80%AFon%20AKS%20through%E2%80%AFan%E2%80%AFeasy%20deployment%20model.%E2%80%AFUsers%20can%20also%20use%20configuration%20management%20capabilities%20using%20AKS.%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-contrast%3D%22none%22%3ELearn%20more%20about%E2%80%AF%3C%2FSPAN%3E%3CA%20href%3D%22https%3A%2F%2Fdocs.dapr.io%2Foperations%2Fhosting%2Fkubernetes%2Fkubernetes-overview%2F%22%20target%3D%22_blank%22%20rel%3D%22noopener%20nofollow%20noreferrer%22%3E%3CSPAN%20data-contrast%3D%22none%22%3EDapr%3C%2FSPAN%3E%3C%2FA%3E%3CSPAN%20data-contrast%3D%22none%22%3E%2C%E2%80%AF%3C%2FSPAN%3E%3CA%20href%3D%22https%3A%2F%2Fdocs.microsoft.com%2Fen-us%2Fazure%2Fmachine-learning%2Foverview-what-is-azure-machine-learning%22%20target%3D%22_blank%22%20rel%3D%22noopener%20noreferrer%22%3E%3CSPAN%20data-contrast%3D%22none%22%3EAzure%20Machine%20Learning%3C%2FSPAN%3E%3C%2FA%3E%3CSPAN%20data-contrast%3D%22none%22%3E%20and%20%3C%2FSPAN%3E%3CA%20href%3D%22https%3A%2F%2Fdocs.microsoft.com%2Fen-us%2Fazure%2Farchitecture%2Fexample-scenario%2Fgitops-aks%2Fgitops-blueprint-aks%22%20target%3D%22_blank%22%20rel%3D%22noopener%20noreferrer%22%3E%3CSPAN%20data-contrast%3D%22none%22%3EGitOps%3C%2FSPAN%3E%3C%2FA%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-contrast%3D%22none%22%3ELearn%20more%20about%20the%E2%80%AF%3C%2FSPAN%3E%3CA%20href%3D%22https%3A%2F%2Fgithub.com%2FAzure%2FAKS%2Fprojects%2F1%22%20target%3D%22_blank%22%20rel%3D%22noopener%20noreferrer%22%3E%3CSPAN%20data-contrast%3D%22none%22%3EAKS%20roadmap%3C%2FSPAN%3E%3C%2FA%3E%3CSPAN%20data-contrast%3D%22none%22%3E%E2%80%AF%20%E2%80%AF%3C%2FSPAN%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A0%2C%26quot%3B335559740%26quot%3B%3A240%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%0A%3CP%3E%3CSPAN%20data-ccp-props%3D%22%7B%26quot%3B201341983%26quot%3B%3A0%2C%26quot%3B335559739%26quot%3B%3A160%2C%26quot%3B335559740%26quot%3B%3A259%7D%22%3E%26nbsp%3B%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E%3CLINGO-TEASER%20id%3D%22lingo-teaser-3423296%22%20slang%3D%22en-US%22%3E%3CP%3ETo%20bring%20more%20incredible%20features%20of%20Azure%20first-party%20services%20to%20AKS%2C%20we%20are%20releasing%26nbsp%3B%20Dapr%2C%20Machine%20Learning%2C%20and%20Gitops%20extensions%20in%20general%20availability%20on%20AKS%20through%20cluster%20extensions.%26nbsp%3B%3C%2FP%3E%3C%2FLINGO-TEASER%3E%3CLINGO-LABS%20id%3D%22lingo-labs-3423296%22%20slang%3D%22en-US%22%3E%3CLINGO-LABEL%3EAzure%20Kubernetes%20Service%3C%2FLINGO-LABEL%3E%3C%2FLINGO-LABS%3E%3CLINGO-SUB%20id%3D%22lingo-sub-3423398%22%20slang%3D%22en-US%22%3ERe%3A%20Dapr%2C%20ML%2C%20Gitops%20Extensions%20GA%20on%20AKS%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-3423398%22%20slang%3D%22en-US%22%3E%3CP%3EThank%20you%26nbsp%3B%3CA%20href%3D%22https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fuser%2Fviewprofilepage%2Fuser-id%2F647378%22%20target%3D%22_blank%22%3E%40kavithagowda%3C%2FA%3E%26nbsp%3Bfor%20Sharing%20with%20the%20Community%26nbsp%3B%3CIMG%20class%3D%22lia-deferred-image%20lia-image-emoji%22%20src%3D%22https%3A%2F%2Ftechcommunity.microsoft.com%2Fhtml%2F%40A027B0AAF3CA617A1E2E22C4E761B2FE%2Fimages%2Femoticons%2Fstareyes_40x40.gif%22%20alt%3D%22%3Astareyes%3A%22%20title%3D%22%3Astareyes%3A%22%20%2F%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E

Version history
Last update:

‎May 24 2022 12:28 PM

Updated by:

Share


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK