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
1 answer

Is it possible deploy multiple container on single host with different sub domain and same listening port(80)?

I have deployed 20 ASP.Net containers on Single Windows Server 2016. Here I have point containers with different ports in Same IP working fine. I need to expose on port 80 all the sites in containers to separate subdomains (eg:…
Rajasekar
  • 129
  • 2
  • 12
1
vote
1 answer

Unable to connect to the azure container Instance after deploying to ContainerGroup

I am trying to deploy a Java Web application into the Tomcat Container docker run -d -p 8080:8080 java-app , the Java Web application was up and running onto the my local like http://localhost:8080/sample. When I tried to push this image to the…
1
vote
2 answers

Deploy specific version of Kubernetes to Azure Container Service

Is there any way to deploy a particular version of Kubernetes to ACS in Azure? Using Azure resource manager, or az command. It doesn't seem like template format for container service shows this info.
1
vote
1 answer

Launch Azure Container Service on Upload to Blob Storage

I have a use case where I'd like to launch a job on an Azure Container Service cluster to process a file being uploaded to Blob storage. I know that I can trigger an Azure Functions instance from the upload, but I haven't been able to find examples…
1
vote
1 answer

Two resource groups created for an ACS cluster

I don't understand why a separate resource group is created for all of the infrastructure associated with an ACS cluster, and not the Resource Group I specify when creating the cluster? This leave my defined Resource Group with one lonely entity…
BrettRobi
  • 3,793
  • 7
  • 40
  • 64
1
vote
0 answers

Accessing app specific logging/metrics data in Kubernetes cluster

I have a Python app running on a Kubernetes Cluster. I want to get app specific monitoring information e.g. logging info that I have in my app (using python logging module) and also metrics info that I am collecting using collectd. I understand…
1
vote
1 answer

Kubernetes - hosting game server with UDP. How to connect/route traffic to POD?

Fore few days I've been playing with Kubernetes cluster on Azure Container Service, with goal to host Unreal game servers on it. After days of experiments and few questions on SO I got to the point where I can host few servers on single node and…
Łukasz Baran
  • 1,229
  • 3
  • 24
  • 47
1
vote
2 answers

Kubernetes UDP load balancing services

I'm trying to route incoming traffic into specific pods inside Kubernetes: As suggested here: Is it possible to specific custom rules for running new containers in Kubernetes/Docker? I tried to use Ingress. Unfortunetly it seems to work only with…
Łukasz Baran
  • 1,229
  • 3
  • 24
  • 47
1
vote
2 answers

Azure Kubernetes - 'az acs create' and exceeding free account quota

Trying to do an equivalent of my MongoDB on GKE blog post, for Azure Container Services instead, but failing at first hurdle. My blog posts are based on using the quotas available in each cloud provider's free tier/account, to help new users…
PKD
  • 130
  • 6
1
vote
2 answers

Can't resolve another service's hostname inside my Kubernetes Windows setup

I have recently followed the tutorial on how to use Kubernetes with Windows pods ( https://learn.microsoft.com/en-us/azure/container-service/kubernetes/container-service-kubernetes-windows-walkthrough ). I decided to extend the example to two…
sebug
  • 41
  • 2
  • 8
1
vote
1 answer

Impossible to login to my azure container registry with docker login

I created an Azure Container Registre some days ago, and now it's impossible to login to this registry with docker login command. I always get this error message: Error response from daemon: Get https://XXXXXXXXX.azurecr.io/v2/: dial tcp: lookup…
1
vote
1 answer

Azure Kubernetes Private Key Location

I've used this command to deploy a Kubernetes cluster in Azure: az acs create -n acs-cluster -g acsrg1 -d applink789 --generate-ssh-keys Everything is working- I can connect to the cluster with kubectl. Now I want to define an SSH step in a…
Dave Swersky
  • 34,502
  • 9
  • 78
  • 118
1
vote
0 answers

No CPU allocated to a PySpark Job in Zeppelin on Azure Container Service with DC/OS orchestrator

I have create a cluster on Azure container service with the DC/OS orchestrator and the following characteristics. { "agentPoolProfiles": [ { "count": 2, "dnsPrefix": "XXXagents", "fqdn":…
1
vote
0 answers

How do you add Master nodes in an ACS-Engine templated cluster?

I have a running cluster that was created by a ACS-Engine template deployment following this guide: https://github.com/Azure/acs-engine/blob/master/docs/swarmmode.md I want to add extra Master nodes to my running cluster... Say I have 3 Master…
Tim Duncan
  • 51
  • 5
1
vote
1 answer

How to login into DC-OS slave through Master

I created DC-OS cluster on azure, after creating with ssh public key I can access to master with the following commands, sudo ssh -v -A -p 2200 user@master-ip -i /root/.ssh/id_rsa After getting into Master I want to access agents so I copied id_rsa…