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
1
vote
2 answers

Upgrading AKS to 1.9

I have been following an AKS issue on GitHub - https://github.com/Azure/AKS/issues/103, where users appear to be able to upgrade AKS to 1.9.1 via the CLI. Regardless of which method I use I cannot force an upgrade on my AKS cluster and it is not…
1
vote
0 answers

Expose containers using Agent IPs and configure them in Azure application gateway's backend pool

I have created an Azure container service cluster using Kubernetes orchestration with 3 Masters and 2 Agents: NAME STATUS AGE VERSION k8s-agentpool-75930632-0 Ready 4d v1.7.9 k8s-agentpool-75930632-1 …
Navlesh
  • 11
  • 3
1
vote
2 answers

Managed Azure Kubernetes connection error

The error I am getting after running kubectl cluster-info Kubernetes master is running at https://xxx-xxx-aks-yyyy.hcp.westeurope.azmk8s.io:443 To further debug and diagnose cluster problems, use 'kubectl cluster-info dump'. Unable to connect to the…
Rıfat Erdem Sahin
  • 1,738
  • 4
  • 29
  • 47
1
vote
1 answer

how to deploy the asp.net core application in azure Docker?

I had developed a simple asp.net core application with Docker support in visual studio 2017 by following developing Docker container-based applications. And also followed this HOW TO DEVELOP MICROSERVICES USING .NET CORE & DOCKER. I run the asp.net…
Pradeep
  • 5,101
  • 14
  • 68
  • 140
1
vote
2 answers

AKS: Logging into worker nodes and get Permission denied (publickey)

AKS- Can't log into one of the worker nodes (VM). I assigned the public IP as per https://gist.github.com/tsaarni/624d5406e442f08fe11083169c059a68 but still no luck. I get the error below: JohnDoeMac:.kube john_doe$ ssh…
codeRelix
  • 11
  • 3
1
vote
2 answers

Configuring HTTPS for an internal IP on Azure Kubernetes

I have deployed a Kubernetes cluster to a custom virtual network on Azure using acs-engine. There is an ASP.NET Core 2.0 Kestrel app running on the agent VMs and the app is accessed over VPN through a Service of the Azure internal load balancer…
higherer
  • 43
  • 1
  • 8
1
vote
1 answer

Azure app service - docker container - take latest build after CI/CD

Through VSTS we have created CI/CD pipeline for a project, in which the end product is a docker image, which will be placed in a azure container registry. In the azure app service, we have a linux container based service plan, which hosts the above…
1
vote
3 answers

metadata.finalizers[0]: Invalid value: "foregroundDeletion": name is neither a standard finalizer name nor is it fully qualified

We have a full cluster running in production and suddenly it stopped working with the following error: The Deployment "authapi" is invalid: metadata.finalizers[0]: Invalid value: "foregroundDeletion": name is neither a standard finalizer name nor…
1
vote
3 answers

how to set dns to azure aks?

I am currently using Azure AKS. I have a frontend application which is using LoadBalancer to have a public IP to access the service. Should I just direct my domain name to the public IP address? Because the IP is dynamic, if the port is destroy and…
Alvin
  • 8,219
  • 25
  • 96
  • 177
1
vote
2 answers

Adding vnet rule through AZ cli fails with 500 errors

I'm experimenting with Azure AKS, and I'm running into problems with adding a vnet rule for my SQL server via the Azure CLI. It dies with an error: Error occurred in request., RetryError: HTTPSConnectionPool(host='management.azure.com',…
Will I Am
  • 2,614
  • 3
  • 35
  • 61
1
vote
2 answers

How to prevent removal of unused docker container images in DCOS cluster?

We are running our application on a DCOS cluster in Azure Container Service. Docker image of our marathon app is approx 7GB. I know this is against best practices but lets keep that debate aside for this question. We pull latest on worker nodes and…
ckb
  • 290
  • 1
  • 3
  • 9
1
vote
2 answers

aspnetcore:2.0 based image won't run on AKS nodes?

I have an asp.net core 2.0 application whose docker image runs fine locally, but when that same image is deployed to an AKS cluster, the pods have a status of CrashLoopBackOff and the pod log shows: Did you mean to run dotnet SDK commands? Please…
Todd Weber
  • 31
  • 1
  • 5
1
vote
3 answers

Where to find Kubernetes API credentials with AKS?

I'm trying to follow this guide to setting up a K8s cluster with external-dns' Azure DNS provider. The guide states that: When your Kubernetes cluster is created by ACS, a file named /etc/kubernetes/azure.json is created to store the Azure…
rh072005
  • 720
  • 6
  • 15
1
vote
3 answers

Unable to connect AKS cluster: connection time out

I've created an AKS cluster in the UK region in Azure. Currently, I can no longer access my AKS cluster. Connecting to the public IPs fails; all connections time out. Furthermore, I can't run the kubectl command either: fcarlier@ubuntu:~$ kubectl…
Frederik Carlier
  • 4,606
  • 1
  • 25
  • 36
1
vote
1 answer

Kubernetes High-Availability Masters

I have 2 clusters running in Azure for 2 different Availability Zones and I would like to cluster the etcd masters following https://kubernetes.io/docs/admin/high-availability/#replicated-api-servers . I created the discovery token for 3 masters.…