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
6
votes
4 answers

Increase Max pods per node with advanced networking on AKS

we have created our Kubernetes cluster with Advanced Networking via the Azure Management UI. Some time later we've run into the limitation of pods per node described here: https://learn.microsoft.com/fi-fi/azure/aks/container-service-quotas We need…
Gena Batalski
  • 103
  • 1
  • 2
  • 6
6
votes
1 answer

Azure Docker compose fails with the environment section

I have a docker-compose.yml script working well in Azure. But when I add en environment section with two variables then it fails with this error: 2018-08-24 10:29:30.214 ERROR - Exception in multi-container config parsing:…
6
votes
2 answers

Best approach to run a container from an Azure function

Some general advice and pointers. I want to run a task in a container from an azure function. So either triggered by a queue or HTTP the function would spin up a container, passing some parameters and that container would do it's work and then be…
paulinventome
  • 1,047
  • 2
  • 10
  • 11
6
votes
1 answer

Deployment with docker-compose to Azure using CLI gives timeout when visiting agent page

I have docker-compose file: version: "3" services: app2: image: kamilwit/dockerdocker_app2 container_name: app2 build: context: ./app2 volumes: - app2data:/data environment: -…
tryingHard
  • 1,794
  • 4
  • 35
  • 74
6
votes
0 answers

Azure Container Service (ACS) - How can I safely restart a worker node?

I've deployed a Kubernetes cluster using the Azure CLI (az acs create command). The nodes in the cluster are running Windows. I want to shutdown and restart a worker node. I tried kubectl drain to remove the node from the cluster. This works and…
6
votes
1 answer

Load balancer PublicIPReferencedByMultipleIPConfigs error on restart

Following along from the Use a static IP address with the Azure Container Service (AKS) load balancer documentation I have created a static IP and assigned it to the load balancer. This worked fine on the initial run, but now I am getting the…
Kirlac
  • 684
  • 6
  • 18
6
votes
1 answer

Unable to deploy specific image to App Service from Azure Container Registry

I have a Linux App Service deployed within Azure, using an image from a private Azure Container Registry. The service was up and running fine, and despite there being no changes to the image (no new pushes), the App Service was redeployed. I…
6
votes
1 answer

Subscription could not be found in Azure Management API

I'm trying to create a Kubernetes cluster using Azure Management API. var credentials = SdkContext.AzureCredentialsFactory .FromFile(Environment.GetEnvironmentVariable("AZURE_AUTH_LOCATION")); var azure = Azure .Configure() …
6
votes
2 answers

Master Node on AKS cluster

I created a Kubernetes cluster using AKS service. When I execute kubectl get nodes, I expect to see the Master node. However, I don't. I only see the Agent (Role) nodes. Is it possible to look at the Master node? The reason I want to do this is to…
jeeva.usa
  • 117
  • 1
  • 5
6
votes
3 answers

Azure Kubernetes: TLS handshake timeout

I created a new cluster as per the Azure guide and created the cluster without issue but when I enter the kubectl get nodes to list the nodes I only get this response Unable to connect to the server: net/http: TLS handshake timeout. I tried once in…
Peter W
  • 1,324
  • 1
  • 14
  • 23
5
votes
2 answers

COPY failed: stat /var/lib/docker/tmp/docker-builder/server/requirements.txt: no such file or directory

Appears to be some kind of context issue. I'm trying to figure out why this would work fine when spinning up a local Kubernetes cluser with Skaffold, but is failing to build the image properly when pushing to Azure. Basic structure is: test-app/ …
cjones
  • 8,384
  • 17
  • 81
  • 175
5
votes
4 answers

Where can i find node public ip on aks made cluster?

I've been asked by Azure support to open the question here, though i think this is an AKS bug. When deploying a cluster each node 'node.status.addresses' should show an externalip or hostname of the node by design but there is a VM name in hostname…
eugeneK
  • 10,750
  • 19
  • 66
  • 101
5
votes
3 answers

Azure: Microsoft.Compute resource provider stuck 'Registering' for about a day

I've tried un-registering and re-registering and it just keeps getting stuck. No logs I can see so I'm not really sure what to do... Has anyone experienced this before?
5
votes
1 answer

Azure web app for containers deploy with custom docker run command

Consider a docker image containing a React UI and a Spring REST app. I'd like to deploy this to Azure web app for containers, where the URL for the instance hits the UI which is being statically served on port 5000 while the Spring app is listening…
4
votes
2 answers

How do I start a previously stopped Azure Container instance using C#?

I have the following code to stop an Azure container instance and would like to start it using similar. using Microsoft.Azure.Management.Compute.Fluent.Models; using Microsoft.Azure.Management.Fluent; using…
johnstaveley
  • 1,400
  • 1
  • 22
  • 46
1
2
3
27 28