Azure 容器实例未显示在 Azure 门户中

Azure 容器实例未显示在 Azure 门户中

我使用以下代码创建一个 Azure 容器实例:

                containerGroup = await azure.ContainerGroups.Define(containerName)
                    .WithRegion("West Europe")
                    .WithExistingResourceGroup(configuration.ContainerResourceGroup)
                    .WithLinux()
                    .WithPublicImageRegistryOnly()
                    .WithoutVolume()
                    .DefineContainerInstance(containerName)
                    .WithImage("selenium/standalone-chrome")
                    .WithExternalTcpPort(4444)
                    .Attach()
                    .CreateAsync(ct);

但是容器有时会出现在 Azure 门户中,有时则不会。(是的,我已多次刷新门户)我在 powershell 中运行以下命令:

Get-AzureRmContainerGroup -ResourceGroupName XXXX

并且它显示 Azure 容器实例正在运行:

在此处输入图片描述

我还可以看到容器以编程方式运行:

IContainerGroup containerGroup = await azure.ContainerGroups.GetByResourceGroupAsync(configuration.ContainerResourceGroup, containerName);

门户为何无法运行?还是我操作有误?

相关内容