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
3
votes
3 answers

Set mfsymlinks when mounting Azure File volume to ACI instance

Is there a way to specify the mfsymlinks option when mounting an Azure Files share to an ACI container instance? As shown on learn.microsoft.com symlinks can be supported in Azure Files when mounted in Linux with this mfsymlinks option enabling…
Darran
  • 593
  • 2
  • 13
3
votes
1 answer

Azure VM disk attachment number is too low. Can this limit be increased?

Based on this blog post https://blogs.technet.microsoft.com/uspartner_ts2team/2015/08/26/azure-vm-drive-attachment-limits/ there is a limit on the disk attachment following the model of number of cpus x2. Is there a technical reason why this limit…
Argy
  • 31
  • 1
3
votes
2 answers

Helm with AKS and ARM Templates

I would like to deploy my services in AKS with helm using Azure resource manager templates. How can I integrate helm with ARM templates?
3
votes
1 answer

az container exec when using Docker compose

Is it possible to execute command in a container which is running under Azure WebApp service by Docker Compose? When I create single container by az container create ..., then it works. But when I create set of containers by Docker compose script…
3
votes
4 answers

Login to azure container

I used following quick start doc to spin up my first Azure container. https://learn.microsoft.com/en-us/azure/container-instances/container-instances-quickstart#feedback It worked fine. but how do I connect to container if I want to debug…
explorer
  • 737
  • 1
  • 8
  • 23
3
votes
3 answers

Frontend communication with API in Kubernetes cluster

Inside of a Kubernetes Cluster I am running 1 node with 2 deployments. React front-end and a .NET Core app. I also have a Load Balancer service for the front end app. (All working: I can port-forward to see the backend deployment working.)…
TallOrderDev
  • 469
  • 4
  • 15
3
votes
1 answer

Who manages the nodes in an AKS cluster?

I started using the AKS service with 3 nodes setup. As I was curious I peeked at the provisioned VMs which are used as nodes. I noticed I can get root on these and that there need to be some updates installed. As I couldn't find anything in the…
azen
  • 39
  • 2
3
votes
3 answers

kubectl: net/http: TLS handshake timeout

I followed the Quickstart docs (here) to deploy a k8s cluster in the Western Europe region. The cluster boots up fine, but I cannot connect to it using kubectl - kubectl times out while trying to perform a TLS handshake: Unable to connect to the…
John Hamelink
  • 1,036
  • 2
  • 15
  • 33
3
votes
4 answers

Istio on Azure Container Service (AKS)

I was planning on installing Istio on my new AKS cluster. However, in the prerequisites for Istio, it is mentioned that K8S cluster should have RBAC enabled. However, I read that AKS ( preview ) doesn't have it enabled. Is this true? Is there an…
jeeva.usa
  • 117
  • 1
  • 5
3
votes
1 answer

Running docker compose on windows ubuntu subsystem

I am trying to run docker-compose for this example https://learn.microsoft.com/en-us/azure/aks/tutorial-kubernetes-prepare-app I have setup Ubuntu subsystem on my windows machines to try out this example. When I run docker-compose up -d I get the…
3
votes
0 answers

Mounting volume in Azure-Container-Service not working for traefik.toml and /var/run/docker.sock

Building an CI/CD pipeline from VSTS to Azure-container-service I've ran into an issue mounting the traefik.toml and the docker.sock file. The deployment uses an SSH tunnel to create a folder /Deploy/ and copy the docker-compose.yml and…
3
votes
2 answers

How to change kubernetes api-server flags [AKS] [Kubernetes 1.8]

I am trying to setup horizontal pod autoscaling using custom-metrics. For support of custom metrics in kuberenetes 1.8.1, I need to enable the aggregation layer by setting the following flags in kube-apiserver: --requestheader-client-ca-file=
Muhammad Faizan
  • 863
  • 1
  • 7
  • 16
3
votes
1 answer

Azure Container Service Kubernetes: How to Change VM Size?

I would like to change the VM size of agents. I can't seem to do that from the CLI or by adjusting the Container Service. How can I change the size of the agents?
Jordan Baker
  • 4,103
  • 1
  • 20
  • 18
3
votes
5 answers

Cannot create AKS in azure with command "az aks create"

az aks create -n MyServices -g MyKubernetes --generate-ssh-keys is not working. Error message: az aks create -n Adestis-Services -g Adestis.Kubernetes --generate-ssh-keys A Cloud Shell credential problem occurred. When you report the issue with the…
Dirk Schiffner
  • 123
  • 1
  • 8
3
votes
2 answers

Unable to delete or create azure aks instances

After a few days of testing Azure aks, I find myself in a situation where existing aks instances don't clean up when I delete the parent resource group (or with az aks delete) and I am also unable to create new aks instances. Has anyone encountered…