Questions tagged [azure-container-service]

17 questions
3
votes
1 answer

Registration of Azure Resource Provider hangs indefinitely

I'm just starting to look into Azure and AKS. In order to do this, I have to enable a bunch of resource providers. I did this using the Azure CLI, like so: az provider register -n Microsoft.Network az…
2
votes
0 answers

Docker compose project in Azure with multiple yaml files?

I am currently constructing a docker project that is to be quite generic in question, to work with several of our sites. The way I have solved that is to have multiple docker-compose yaml files, one main file containing all common configuration and…
2
votes
1 answer

How can I improve create/launch time of an Azure Container Instance?

I keep reading that Azure Container Instances can be "spun up in seconds". However, my tests have shown that even the simplest (smallest) containers are taking around 45 secs to launch. Is this typical? This container launches on my desktop pretty…
dommer
  • 378
2
votes
1 answer

Accessing azure internal container app though P2S vpn connection

I'm a little new to azure networking so this might be obvious but I'm kind of stuck. I've created an azure VNET. Inside that I've setup a P2S gateway which seems to work fine. I can connect to it and once connected I can access a VM I created in my…
2
votes
1 answer

Expose Container in virtual network to public Azure

I have an Azure cosmos DB instance configured to allow access from a private virtual network: icy-horizon. I also have an API deployed using Azure Container Instances with port 80 exposed attached to icy-horizon network as it needs to communicate…
1
vote
1 answer

Azure solution for TCP Socket server

We have a TCP socket server that retrieves data from various IoT devices, processes it and outputs it to an azure database. Right now it's being hosted on an Azure Linux VM. However would putting it in a function app or container service be more…
Isaac
  • 113
1
vote
1 answer

docker node ls is showing only master node in Azure

I have created container environment in Azure. However, while running docker node ls, it is only showing LEADER node. but not showing agent node here. Please help. Thanks
1
vote
1 answer

How to use a POSIX-compliant volume in Azure Container Instances

Some Docker images like postgres and gitlab/gitlab-ce require the ability to set permissions and ownerships on files and directories, however this does not appear to be supported on Azure Container Instances (see here, here, here) due to the file…
0
votes
2 answers

azure container registry allow pull without login

We need to setup public docker repository, and trying to use azure container registry, but turns out you need to login to pull images from it, is there any way to avoid login for pull?
0
votes
1 answer

Setup Azure Container Instance with Multiple Volume Mounts

I am trying to setup a zookeeper container in Azure. I want it to use three different Azure File Shares. One is for the zookeeper configuration, one is for data, and one is for logs. Because of the multiple mounts, I have to use an ARM template for…
fizch
  • 101
0
votes
0 answers

How to increase size of /dev/shm in container app job

I'm attempting to run pytorch as an Azure Container App Job. I'm being stopped by the size of the shared memory, /dev/shm. RuntimeError: DataLoader worker (pid 30) is killed by signal: Bus error. It is possible that dataloader's workers are out of…
Lars
  • 1
0
votes
0 answers

TNS error while connecting to an Oracle DB running as ACI through an Azure Application Gateway

I have an Oracel DB runnning as an Azure Container Instance. To connect to the container, I set up an Azure Applicaiton Gateway as described here: Expose a static IP address for a container group Now I can reach the DB via az cli (tnsping & sqlplus…
0
votes
1 answer

Azure Container App fails to start due to volumeMount config

I'm stuck with an issue I have trying to setup persistent file-storage for a Container App in the Azure cloud. I'm followed this tutorial: https://learn.microsoft.com/en-us/azure/container-apps/storage-mounts-azure-files?tabs=bash My problem is in…
Dahie
  • 101
0
votes
1 answer

How can I mount a user-specific file share on an Azure Container Instance without incurring per-transaction costs?

We host a web-based IDE that runs in a container. I'm using ACI to host the container instances. I need to mount the user's files in the container, and make sure the user cannot access other users' files. An individual user is not expected to go…
0
votes
0 answers

Azure container instance receives tremendous traffic even right after its creation

I've created an Azure container instance with MSSQL container image. It starts. However before even login, or even putting the URL in to use, I've checked the container logs and it's being hit with traffic. As this is a MSSQL DB server, it receives…
1
2