可用于容器的 Azure 应用服务的秘密卷?

Secret volume available for Azure app service for containers?

我可以将 secret volume 用于部署到容器上的 Azure 应用服务的容器吗?

实际上,你不能。 Azure Web App 没有 属性 来输入机密卷中的机密。但是您可以看到秘密卷只是一个具有 tmpfs 驱动程序类型的挂载点,然后 Azure 将秘密放入其中。

所以如果不介意的话,可以用volume属性设置驱动类型tmpfs然后挂载到容器中,然后自己把secret放在里面。看看 docker-compose 中的 driver_opts ,这里有一个例子:

volumes:
  example:
    driver_opts:
      type: "tmpfs"