skip to Main Content

Managed Identity to Connect AKS with Azure SQL

I am trying to connect Azure SQL with AKS using managed Identity but this doesnt seems to work. I have been checking numerous blogs and I am as confused as I started. I am using aad-pod-identity: https://github.com/Azure/aad-pod-identity https://blog.seblab.be/posts/configure-aad-pod-ientity-on-aks/ https://medium.com/devopsturkiye/azure-kubernetes-service-aks-mimarisinde-aad-pod-identity-943effa54a39 https://medium.com/devopsturkiye/azure-kubernetes-service-aks-mimarisinde-aad-pod-identity-943effa54a39…

VIEW QUESTION

How to upload file from local python script to Azure container?

I'm trying to upload a json file directly from my python script (VSC) to an Azure blob container. Here is what I've tried: account_url = "https://containerxyz.blob.core.windows.net" default_credential = DefaultAzureCredential() blob_service_client = BlobServiceClient(account_url, credential=default_credential) container_name = 'https://containerxyz.blob.core.windows.net/a/b/raw/' file = 'test.txt' contents…

VIEW QUESTION
Back To Top
Search