azurecontainersazure-container-instancesazure-container-apps

ContainerApp ingress internal with VNet not accessible


I've created a simple hello world container app with an internal ingress but it doesn't work accessing it using the same VNet with a separate VM on it -- it's just inacessible. Any idea what is going wrong? It should work as follows:

I configured it as follows:

ContainerApp

Ingress Application ingress settings:

Managed Environment


Solution

  • ContainerApp ingress internal with VNet not accessible

    Ingress Traffic: Accept traffic from anywhere

    "As you mentioned Ingress Traffic, you selected Accept traffic from anywhere, but this is for external access. In order to access within the VNet, make sure to select the Limited to VNet option under ingress settings. Follow the MS Doc for more details

    enter image description here

    Contianer app ingress settings

    enter image description here

    Note: You can also check the NSG rules to see if any Deny rule has been created for outbound traffic on ports 80 and 443.

    Private DNS Zone configuration

    enter image description here

    Private endpoint configuration

    enter image description here

    When I try to access the container app from the VM, the container app is able to access it.

    enter image description here

    Result from outside network.

    enter image description here

    Follow Stack Link1 and Stack Link 2. for the same realted issue.

    Ingress settings