Questions tagged [azure-container-service]

Microsoft Azure Container Service (ACS) optimizes the configuration of popular open source tools and technologies specifically for Azure. It allows you to easily create and host clusters of Docker containers in Microsoft Azure using either Docker Swarm or DC/OS for cluster orchestration.

Microsoft Azure Container Service (ACS) optimizes the configuration of popular open source tools and technologies specifically for Azure. It allows you to easily create and host clusters of Docker containers in Microsoft Azure using either Docker Swarm or DC/OS for cluster orchestration.

More Information

410 questions
2
votes
1 answer

Azure face transactions and limits using containers provided by cognitive services

If I use Azure face for verification using a container image with servers on my premises, do I still need to abide by the TPS limits? If I use the face web API hosted by Microsoft, as face verification needs faceId from Face-Detect. Does that…
2
votes
2 answers

Setup Azure Pipelines for a Azure multi container app (multiple repositories)

I currently have a web app split into three parts. Each part has its own git repository. Frontend Angular (foo.bar) Backend Angular (foo.bar/admin) .NET Core API (foo.bar/api) In front sits an NGINX Server which acts as a reverse proxy. Currently,…
2
votes
0 answers

Network Timeout for Containerized Service in Service Fabric

We lift and shifted our cloud services to Azure Service Fabric. We converted our services to Windows Container and successfully deployed to the cluster. However, we're getting a lot of timeout issue while uploading file to Sharepoint and accessing…
Winston
  • 21
  • 1
2
votes
2 answers

Disk options for Azure Container instances

Is there a way to pick disk type when creating ACIs? For example choose to use SSDs for better performance? I don't see any mentions of any disk options in documentation for az container create
fkorotkov
  • 348
  • 2
  • 13
2
votes
1 answer

Azure Kubernetes Service ARM template is not idempotent

I have created an ARM template to deploy an Azure Kubernetes Service instance, which I am trying to plug into a CI/CD pipeline in VSTS. On the first deployment, everything works as expected and the K8s cluster is created successfully. However, upon…
2
votes
2 answers

Azure Container Services: trying and failing to pull image

I'm trying to deploy my k8s cluster. But when I do, it can't pull the image. Here's what I get when I run kubectl describe pods: Type Reason Age From Message ---- ------ ---- ---- …
2
votes
2 answers

Azure AKS 'Kube-Proxy' Kubernetes Node Log file location?

My question is 'probably' specific to Azure. How can I review the Kube-Proxy logs? After SSH'ing into an Azure AKS Node (done) I can use the following to view the Kubelet logs: journalctl -u kubelet -o cat Azure docs on the Azure Kubelet logs can…
Necevil
  • 2,802
  • 5
  • 25
  • 42
2
votes
2 answers

Microservices in Azure

I understand that Microservices is about independent loosely coupled services. I have read https://en.wikipedia.org/wiki/Microservices. When it comes to Azure, I understand there are many components like Azure Service Fabric, AKS and also have the…
Thomas
  • 1,970
  • 4
  • 28
  • 59
2
votes
2 answers

Security in Azure Managed Kubernetes Service (AKS)

I am trying to get more documentation, understanding about security in Azure Managed Kubernetes Service (AKS). Does Azure encrypt the containers deployed to the AKS cluster at "rest"? If so, how is data encryption achieved at rest, and in…
aazeem
  • 844
  • 1
  • 12
  • 23
2
votes
2 answers

Unable to create AKS cluster in westeurope location

Trying to setup an AKS cluster using this guide in the westeurope location but it keeps failing at this step. When executing this command az aks create --location westeurope --resource-group --name --node-count 1…
Arjan
  • 21
  • 2
2
votes
1 answer

Azure Container Group Instance

I am working with Azure Container Instance group.. and one of my containers is constantly restarting.. it goes to a terminated state and restarts. Everything looks good in logs.. The container is running a spring framework + React application. When…
2
votes
0 answers

Displaying the image in browser directly instead of downloading

We want to display the image of jpeg in Azure Blob Storage in browser directly instead of downloading it, like . How can we set the content type of the blob? Is there any setting we can set in Azure Blob Explorer?
kvwg
  • 21
  • 1
2
votes
0 answers

Unable to connect to azure kubernetes cluster with kubectl

I am following the instructions on Microsoft's webpage: https://learn.microsoft.com/en-us/azure/aks/kubernetes-walkthrough I have created a cluster on Azure using "az aks create ...". I am able to fetch the credentials via "az aks…
2
votes
2 answers

unable to access helloworld App deployed using DCOS Marathon in Azure

I have deployed a hello world application in Azure using DCOS and Marathon Framework.I am trying to access that using fqn: portnumber at which the application is hosted. I am unable to open the application Following is the json I have used { …
2
votes
0 answers

How can I deploy multiple deployments in Kubernetes cluster at the same time?

I have multiple .NET microservices in my architecture and for each one I have created a deployment object and now I attempt to deploy to the Azure container service running kubernetes. When I run a kubectl apply -f services.yml I always have a few…