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 is failing again and again

I am Trying to load simple windows docker image in Azure container instance, The only thing I see different in this image is size, which is around 10 GB but it should not be an issue. microsoft/dotnet-framework:4.6.2-runtime is the image, I am…
Shubham Nigam
  • 3,844
  • 19
  • 32
0
votes
1 answer

Identityserver4 API authentication doesn't work as expected

I'm stuck with this problem for almost a month, so any help is appreciated. Let's get to the problem itself: I have an identity server and user management API (CRUD based) in one project. The identity server itself works as a login/register page for…
0
votes
1 answer

HttpClient random exception with Azure Container Instance

HttpClient throw a random exception ( maybe 2-3 times out of 10 attempts ) with Azure Container Instance Exception Info: System.Net.WebException at System.Net.HttpWebRequest.EndGetResponse(System.IAsyncResult) at …
vivek jain
  • 291
  • 3
  • 13
0
votes
1 answer

How to access docker.sock on a container instance inside an azure container group?

I am doing a small system which deploys azure container groups via Rest. On the container groups I have multiple instances that are load balanced via Traefik. For example I have a container group with two containers plus a traefik container that…
0
votes
0 answers

KVM VM inside Azure Linux VM

From my understanding, I can run a Hypervisor using a Windows root OS with a Dv3 sized VM using Nested Virtualization, But when it comes to using KVM instead with Nested Virtualization I'm not finding anything. Can a KVM VM run inside Azure Linux…
0
votes
3 answers

Setting ENV in Azure Container Instances Deployment

I tried to automate my deployment of a Docker container to an Azure resource group following the docs on https://learn.microsoft.com/en-us/azure/azure-resource-manager/resource-manager-keyvault-parameter#deploy-a-key-vault-and-secret and…
0
votes
1 answer

Windows image fails to pull with error "failed to register layer"

I have image stored in AzureCI and I it fails to launch with following errors. I would assume since second entry is backing off of pulling image that image actually successfully downloaded but there is no additional information available about…
Gregory Suvalian
  • 3,566
  • 7
  • 37
  • 66
0
votes
1 answer

Can't connect to iperf3 running in Azure Container Instances

trying a quick experiment with ACI to see if I can use it to host iperf3 for some on demand network performance testing. The docker image is https://hub.docker.com/r/netgio/iperf3server/ I can get the container up and running but when I try to…
Netgio
  • 1
  • 1
0
votes
1 answer

ElasticSearch in Azure Container Instance (Preview)

The following command creates a container instance of elasticsearch:latest image: $ az container create --image elasticsearch:latest --name es -g rg-es --ip-address public --memory 4 --cpu 2 According to: $ az container show --name es -g rg-es -o…
franc
  • 318
  • 3
  • 6
0
votes
3 answers

Not able to create Azure Container Instance with CLI using private image

I can't deploy pod using private image (ACR) using CLI and yaml file. Deploying from registry directly using either az container or kubectl run does work however. Pod status: "containers": [ { "count": 3, …
0
votes
1 answer

Not able to create Azure Container Instance in the portal with private image

I'm trying to create an Azure Container Instance in the portal with a private image. The validation seems to pass but I can't click OK. The button is disabled. The private registry is an Azure Container Registry in the same subscription.
0
votes
0 answers

UWSGI + nginx repeated logging in django

I am having some weird issues when I run my application on a dev. server using UWSGI+nginx.. It works fine when my request completes within 5-6 mins.. For long deployments and requests taking longer than that, the UWSGI logs repeats the logs after…
0
votes
0 answers

creating my first image for rocket (serviio with java dependency)

I have CoreOS stable (1068.10.0) installed and I want to create a serviio streaming media server image for rocket. this is my manifest file: { "acVersion": "1.0.0", "acKind": "ImageManifest", "name": "tux-in.com/serviio", "app": { "exec": [ …
ufk
  • 30,912
  • 70
  • 235
  • 386
-1
votes
1 answer

How to push helm chart from Jfrog artifactory to Azure container registry

I have my Helm chart hosted in a Jfrog artifactory. My helm chart can be accessed using: http://repository.test.com:8181/artifactory/compress-files/abc/abc-1.2-helm.tgz The expectation is to create an Azure container registry repository abc-1.2 and…
-1
votes
1 answer

Deploy reactjs application on the container instance

I am very new to this Containers, so I am unable to deploy the application on the Container instance . I tried below steps but i could not resolve the issue. Please help me out of this. Thanks in advance steps: 1.I have created the Reactjs…
1 2 3
43
44