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

Is Swarm Mode going to be supported on Azure Container Service?

After creating a Container Service with Swarm orchestration, setting up an SSH tunnel to the manager, and setting the DOCKER_HOST environment variable, I was able to issue commands to the Swarm manager on Azure. Then I tried to deploy a Docker stack…
Attila
  • 1,445
  • 1
  • 11
  • 21
2
votes
1 answer

Unable to connect to SQL Server Container on Kubernetes on Azure (ACS) from Management Studio

I have created a custom SQL Server Database Container Image. I can run that as a container on my local machine (Windows 10 with Docker for Windows). After running that container, I can successfully connect to it from SQL Server Management Studio by…
Mahesh
  • 63
  • 1
  • 7
2
votes
0 answers

Integrating existing Azure VNET to Kubernetes cluster using ACS-Engine

Since deploying the k8s cluster in Azure Portal does not allow me to attach the existing Azure VENT to it, I go for ACS-Engine. The default k8s networking environment is as follows: Private VNet 10.0.0.0/8 Master Subnet 10.240.255.0/24 Agent…
2
votes
1 answer

Azure Kubernetes nginx-Ingress: preserve client IP

I try to preserve the client IP with proxy protocol. Unfortunately it does not work. Azure LB => nginx Ingress => Service I end up with the Ingress Service Pod IP. Ingress Controller Deployment: apiVersion: extensions/v1beta1 kind:…
Alexander Herold
  • 1,057
  • 2
  • 9
  • 20
2
votes
1 answer

Unable to connect with Azure Container Services - Kubernetes

I am working on setting up environment for deploying microservices. I have gotten as far as building my code and deploying to a registry but having problem running it in Azure Container Services. I am following this guide to connect to ACS:…
2
votes
1 answer

RouteController failed to create a route in acs-engine

I'm trying to deploy my cluster using acs-engine I followed the steps everything went good. But then when i go kubectl get pods --all-namespaces I find some of them in pending state. On kubectl describe nodes I see this NetworkUnavailable True…
Karthik
  • 929
  • 2
  • 12
  • 24
2
votes
1 answer

Where can I find the private key for my ca.crt file

i setup a kubernetes cluster on azure with the azure-container-service cli (az acs create). The cluster is up and running and it seems to work fine. Now I want to sign client certificates with my kubernetes CA which was created on installation. In…
2
votes
1 answer

Using Azure Container Service with volume mapping

I deployed a dockerized app to azure using the Azure Container Service. It is a NodeJS/Express app using MongoDB. Everything is working fine, but now what I want to do is set up a volume mapping between one of my internal project folders and a…
1
vote
1 answer

suggest best way to do Path based routing using appgateway when multiple azure container is hosted as internal

Here scenario is , we have app service needs to access the azure container apps hosted as internal, that can be accessesed with the vnet. The app gateway routing works well if we have one container app and we have achieved using below link- single…
1
vote
3 answers

Application run failed after deploying dockerized image on Azure App Service

I am trying to deploy dockerized React JS application (uses ngnix) on MS Azure App Service (Web application as Container/Web App). Using Azure Container Registry for the same. Here is my Dockerfile FROM node:14.17.0 as build WORKDIR /app ENV PATH…
1
vote
1 answer

Azure Web App for Containers: how to password protect

How can I password protect a demo web application deployed on Azure Web App for Containers? We don't require elaborate user management right now. A single user with a standard password would suffice. Thanks
1
vote
0 answers

Hosting ShinyProxy on Azure

I'm exploring the Docker capabilities for ShinyProxy on Azure and I want to set it up in a simple, expandable, and affordable way. As far as I understand there are five ways to set up Docker-based services on Azure. Questions My question is…
1
vote
1 answer

How do I determine what's resetting my connection?

I have a client and server, based on TcpListener and TcpClient. The client connects to the server and they exchange some data. Everything works just fine when I run locally. But when I put the server in a Docker container on Azure Container…
Mason Wheeler
  • 82,511
  • 50
  • 270
  • 477
1
vote
1 answer

azure web app not running on latest docker image

I have a web app service inside a registry up and running with a two docker image/container. I pushed docker image with the latest changes and it shows that my docker image has been pushed. One strange thing that I suspect is that docker image has…
1
vote
1 answer

how to iterate through all the blob names from subdirectories as well, in Azure Cloud Storage using python?

Objective : to iterate and write all the blobs from root and multiple sub-directories present. this is current code written: for _file in container_client.walk_blobs(include='metadata'): file_name = 'file.txt' f =…