Questions tagged [azure-container-instances]

Azure Container Instances is a cloud service from Microsoft that offers to run containers as a service without managing the underlying infrastructure/servers. This tag is used for questions related to using azure container instances

Azure Container Instances offers the fastest and simplest way to run a container in Azure, without having to provision any virtual machines and without having to adopt a higher-level service.

Azure Container Instances is a great solution for any scenario that can operate in isolated containers, including simple applications, task automation, and build jobs. For scenarios where you need full container orchestration, including service discovery across multiple containers, automatic scaling, and coordinated application upgrades, we recommend the [tag:Azure Container Service].

Features

  • Fast startup times
  • Hypervisor-level security
  • Custom Sizes
  • Public IP connectivity
  • Persistent storage
  • Linux and Windows containers
  • Co-scheduled groups

For more information, see Documentation

658 questions
0
votes
1 answer

Azure Container Instance Security VPN

I've got an azure container instance... I've added it into a vnet... with a private IP address..10.0.0.4 I want only a handful of azure app services to be able to call the rest API that this azure container instance exposes, how do I give those…
Andrew Duffy
  • 795
  • 2
  • 17
  • 37
0
votes
2 answers

Run multiple container instances on Azure with the same docker image just like AWS Fargate tasks

I have used AWS Fargate previously for deploying a docker image as 10+ tasks in a cluster. Now I want to do the same on Azure. I have been successful to run the image on a container group but I want to create replicas of the container group just…
0
votes
1 answer

Is it possible to keep the original partitioning when replicating records with Kafka MirrorMaker 1?

We are using Kafka MirrorMaker 1 running in an Azure Container Instance to send records from a kafka cluster to a Microsoft Azure Eventhub. Our topic has 10 partitions and we have manually created a topic with the same name and number of partitions…
0
votes
1 answer

Docker compose multi-container with zookeeper, kafka and python script on Azure container instances not able to connect to kafka

I am trying to get a zookeeper/kafka non-clustered setup to be able to talk to containers with python scripts. I want to be able to run a zookeeper/kafka container and 2 or more containers with python scripts communicating to the zookeeper/kafka,…
0
votes
1 answer

How to call my cleaning python script within score.py in Azure

I have the below score.py file I trying to deploy using Azure ACI. The issue is Im getting module not found error indicating my python cleaning script ('cpp_data_prep_methods') cannot be found even though I have the score.py and pyhthon script in…
0
votes
1 answer

Set up environment varialbe during deployment for Azure Container Instance

I am deploying my machine learning model to an azure container instance through a pipeline using the code snipplet below: from azureml.core.webservice import AciWebservice deployment_config = AciWebservice.deploy_configuration( cpu_cores=0.5,…
0
votes
1 answer

Access to Azure Keyvault inside Azure Container Instance

I have a machine learning model deployed on azure container instance and I need to access to key vault. When i use command below credential = DefaultAzureCredential() It can't authenticate thus i cannot reach my secrets. How can i reach keyvault…
0
votes
1 answer

I don't receive any logs from azure container instance whereas logs are in the container tab

I've launched my instance with the right --log-analytics-workspace and --log-analytics-workspace-key. I can see ContainerEvent_CL logs. but I can see no ContainerInstanceLog_CL logs. I'm using gcr.io/distroless/cc-debian10:nonroot as image and…
VsM
  • 710
  • 1
  • 10
  • 23
0
votes
1 answer

i am getting error when deploying machine learning model in aci

I am getting following error when trying to deploy machine learning model and when i deployed last time (1 month ago) with same score.py file it was deployed successfully, can anyone tell me why its giving error now Error message as…
0
votes
0 answers

NGINX config causing ERR_TOO_MANY_REDIRECTS error

Below is my current nginx config. server { listen 80 default_server; server_name _; return 307 https://$host$request_uri; } server { listen [::]:443 ssl; listen 443 ssl; server_name…
c0rdii
  • 124
  • 1
  • 12
0
votes
1 answer

How to create mount path in Azure container instance for LUIS setup

I am trying to setup LUIS Image on Azure container instanse. i had setup Enviornment variables like Eula,API Key and Endpoint But I am not sure how to create a mount path /input where i can plance my LUIS Exported file. Please let me know if anyone…
0
votes
1 answer

Multiple egress IPs for Azure Container Group

I would like to use multiple egress IPs for an Azure Container Group where each container instance in that group uses one of those IPs. Something like a NAT gateway might work, but apparently that is not supported. I also read there may be a…
0
votes
1 answer

Move TheSpaghettiDetective from local machine to Azure Container Instances

I have clone TheSpaghettiDetective (https://github.com/TheSpaghettiDetective/TheSpaghettiDetective) repository and then use the docker-compose.yml to build it and it works great on my local machine. Now I want to push it to Azure Container Instances…
0
votes
1 answer

Mount Azure File Share on Azure Container with access key retrieval in ARM Template

I'm creating a file share and container instance using ARM template, and I need to mount this created file share to the container. I have the below template - { "$schema":…
0
votes
1 answer

What all POST Rest API commands we can execute inside a azure container instance

I have build a docker linux image which includes azure cli, kubectl and terraform installation. I have pushed the image to azure container registry and created a container instance manually with that image. My container is running successfully and I…
Lokesh M
  • 117
  • 1
  • 1
  • 6