问题标签 [azure-container-instances]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
543 浏览

azure - Reading Azure container instance secret volumes from asp.netcore 2.2 web app

I have read this documentation from Microsoft which describes how secret volumes can be added to a container instance:

https://docs.microsoft.com/bs-latn-ba/azure///container-instances/container-instances-volume-secret

I would now like to read these secure values from my asp.net core application. How can i do that? I can't find any documentation for this anywhere.

I would ideally like to carry out this configuration in my Startup class:

something here:

Finally, I would like to be able to run the code locally so that i can check if it's working, before deploying the container to azure. is there a way I can mock/fake these secrets on my local installation (visual studio 2017, solution has docker support enabled, docker is running locally on my machine) do give me confidence that everything is working?

I've edited this question to make it clear that this is about secret volumes

0 投票
1 回答
758 浏览

azure - Azure 容器实例传出 IP 范围

我想生成一个 Azure Storage V2 SAS 令牌,将其允许的 IP 地址限制为来自位于给定 Azure 区域中的 Azure 容器实例的 IP 地址。我在任何地方都看不到这些 IP 范围的任何迹象。

0 投票
1 回答
3290 浏览

azure - 带有 blobfuse 或 Azure 存储 Blob 的 Azure 容器实例

我正在从 azure 容器注册表(azure cli 和/或门户)部署到 azure 容器实例。Azure blobfuse(在 ubuntu 18 上)给了我以下错误:

未找到设备,请先尝试“modprobe fuse”。

解决方案是--cap-add=SYS_ADMIN --device /dev/fuse在启动容器(docker run)时使用标志:

安装 davfs2 卷时无法打开 docker 容器中的保险丝设备

但是,--cap-addACI 不支持该标志:

https://social.msdn.microsoft.com/Forums/azure/en-US/20b5c3f8-f849-4da2-92d9-374a37e6f446/addremove-linux-capabilities-for-docker-container?forum=WAVirtualMachinesforWindows

AzureFiles 对于我们的场景来说太贵了。

关于如何在 ACI 中的 Docker Linux 容器中使用 blobfuse 或 Azure Blob 存储(准本地来自 nodejs)的任何建议?

0 投票
0 回答
393 浏览

azure - Docker 基于 TeamCity 云代理构建

我从未在 TeamCity 上使用过云配置文件,并且对 Docker 构建运行程序有疑问...

我有一个运行容器的 TC 代理池和 Azure 容器实例。我想使用这个池中的代理来运行 Docker 构建并使用 TC Docker 运行器推送命令,但这显然需要在代理上安装 Docker。

人们是如何解决这个问题的?Docker 中的 Docker?

谢谢!

0 投票
1 回答
796 浏览

azure - 在 Azure 容器实例中启动已部署和终止的容器

如何在已部署且处于终止状态的 ACI 容器组中启动容器。可以通过一些自动化或逻辑应用程序来完成吗?CLI 命令显示 az 容器重启但未启动。逻辑应用程序连接器似乎每次都拉取图像并启动它。没有办法只启动现有的终止容器吗?

0 投票
1 回答
1384 浏览

docker - 我可以将 Azure 容器实例 (Windows) 中的文件复制/粘贴到外部存储吗?

我正在尝试在 Azure 上容器化我现有的应用程序 (.net)。一旦应用程序托管在容器上,我希望能够对我的 web.config 文件进行更改,而无需重建整个映像。我使用的图像将是基于 Windows 的 docker 图像。根据在线提供的文档,基于 Windows 的实例不直接支持 Azure 文件共享,是否有可以使用的解决方法?

0 投票
2 回答
271 浏览

azure - Azure 容器实例未连接 kafka 集群

我有一个 Azure 容器实例,我想连接到同样在 azure 中的 kafka。如果在 kafka 中使用 dns 配置adverted.listeners,我可以连接,但是使用主机名我不能。在 ACI 中,我也无法 ping/wget/telnet 到其他内部资源,仅针对其他 ACI。

vnet kafka = vnetA 子网 kafka = subnetA

vnet ACI = vnetA 子网 ACI = 子网 B

我用私有 ip 创建了 ACI。

0 投票
1 回答
280 浏览

azure - Azure 容器实例不按主机名连接到 VM

我有一个 Azure 容器实例,它通过 IP 知道 VM,但不通过主机名。我可以通过执行 echo ipVM hostnameVM > /etc/hosts 来解决这个问题。但是有没有办法设置 VNET DNS 服务器?如果是这样,我如何访问默认的 DNS 服务器(Azure 提供)?

0 投票
1 回答
465 浏览

azure - 尝试从 Azure 容器实例打开 FQDN 时如何解决“无法连接到服务器”错误?

我目前正在尝试使用 Azure 容器实例部署我的第一个容器。到目前为止一切正常,但是当我使用 az container show 并浏览 FQDN 时,我收到一条错误消息:

无法连接到服务器

该页无法显示。您正在查找的页面当前不可用。

互联网连接已启动,我可以连接到其他所有内容。

我该如何解决这个问题?

0 投票
1 回答
1736 浏览

azure - 如何在 Azure 容器实例中编辑 /etc/hosts?

我尝试通过 echo IP Hostname >> /etc/hosts 命令编辑 /etc/hosts,但似乎 ACI 重写了文件。我已经尝试将它放入 dockerfile 并通过 --command-line 但没有任何效果。