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
5 answers

AKS: CI/CD pipeline using AKS

I'm trying to figure out the steps to setup CI/CD for an Asp.Net Core web application using AKS with VSTS. Are the steps described in https://learn.microsoft.com/en-us/vsts/build-release/apps/cd/azure/deploy-container-kubernetes valid for what I'm…
frosty
  • 2,421
  • 6
  • 26
  • 47
2
votes
1 answer

Will there be support to establish a private connection to Azure AKS

My client is currently evulating AKS which seems to be really promising. Our current platform is based on Azure VM's we provision ourselves. We would like to create private communication between both our existing platform and the managed AKS cluster…
2
votes
3 answers

Copying files to/from Windows container on a k8s cluster

I'm trying to copy files to/from a Windows container in a pod running on an ACS k8s cluster. I'm using this kubectl command from my Windows 10 laptop: kubectl cp dev-acs-conn-testdn-1981314364-rjc0l:\app\nettrace.etl c:\ And I'm getting this error…
BrettRobi
  • 3,793
  • 7
  • 40
  • 64
2
votes
3 answers

Azure Container Instances stuck in "Creating" state

Whether I have the azure agent plugin for Jenkins make my container, or if I do it manually, it seems like either way it never enters a running state. az container create \ --os-type Windows \ --location eastus \ --registry-login-server…
Alexander Trauzzi
  • 7,277
  • 13
  • 68
  • 112
2
votes
1 answer

Azure Cloud App ERR_CONNECTION_TIMED_OUT

I would like to deploy a container based app in azure container service, and followed this tutorial. https://learn.microsoft.com/en-us/azure/container-service/dcos-swarm/container-service-mesos-marathon-ui Everything went well except that the public…
2
votes
1 answer

My AKS Cluster was brought down, how can I recover?

I have been playing around with load-testing my application on a single agent cluster in AKS. During the testing, the connection to the dashboard stalled and never resumed. My application seems down as well, so I am assuming the cluster is in a bad…
AIDA
  • 519
  • 2
  • 14
2
votes
3 answers

Creating a Kubernetes cluster in Azure fails

I'm having a problem going through the step in the Quickstart for Azure Kubernetes cluster for Linux. The following command creates a resource group successfully: $> az group create --name myResourceGroup --location eastus However, I get an…
Cameron Ross
  • 31
  • 1
  • 4
2
votes
0 answers

AKS create failed

I'm trying to use azure container service but when I run az aks create --resource-group DockerEEcluster --name myK8sCluster --node-count 1 --generate-ssh-keys I get the following error Deployment failed. Correlation ID:…
Domenico
  • 21
  • 1
2
votes
2 answers

Kubernetes/Azure ACS: Why can't I access external IPs of my Service?

Using Kubernetes on Azure Container Service (not the new AKS though). I'm deploying a front-end up like this: apiVersion: apps/v1beta1 kind: Deployment metadata: name: frontend-deployment spec: selector: matchLabels: app: frontend …
Jordan Baker
  • 4,103
  • 1
  • 20
  • 18
2
votes
1 answer

how to set dns to azure kubenetes(acs) services?

I am new to azure. I created an azure acs with kubenetes by using the following config(part of the whole file). - apiVersion: v1 kind: Service metadata: name: my-web spec: type: LoadBalancer ports: - port: 80 …
Ron
  • 6,037
  • 4
  • 33
  • 52
2
votes
1 answer

Create azure container service cluster fails with error insufficient privileges for azure graph

With the Azure CLI version 2.0.20 I am suddenly not able to create ACS clusters anymore. The resource group testrg has been created with: az group create -l westus -n testrg Both az aks and acs fail. Commands used: az aks create -n test-k8s-stg -g…
Alexander van Trijffel
  • 2,916
  • 1
  • 29
  • 31
2
votes
1 answer

Unable to delete AKS cluster

After the announcement of AKS (Azure's managed Kubernetes service) I decided to try it out. I'm not experienced with Azure (aside from administering Office365 and using Azure AD), so I just copy-pasted commands from the introduction blog…
Martijn Heemels
  • 3,529
  • 5
  • 37
  • 38
2
votes
1 answer

What is a lock in Azure Container Registry

In the Azure Container Registry blade in the Azure portal, there is a "Lock" section on the left hand side and I can't find it anywhere in the ACR documentation. What is it?
s g
  • 5,289
  • 10
  • 49
  • 82
2
votes
2 answers

How do I change the VM size of the agent pool in an Azure container service?

I have deployed an Azure Container Service a month ago and it works perfectly. However when I tried to increase the VM count in the agent pool then Azure returned an "operation not allowed" error all the time. This is the error returns…
2
votes
2 answers

Logging/Monitoring of Kubernetes cluster in Azure Contianer Service

Does Azure Container Service integrate with Azure Monitor? Wondering what the best way is to do logging/monitoring of kubernetes cluster?