将HTTPS“层”添加到Azure容器实例

时间:2020-02-26 15:56:19

标签: azure ssl https azure-container-instances

我正在Azure容器实例中运行InfluxDB。 Influx具有启用HTTPS的功能,但是我正在Azure中寻找一些服务,这将使我更容易管理证书。使用Influx内置的HTTPS支持,我必须定期(在证书过期之前)将证书部署到Azure存储帐户的文件共享中。这似乎并不“优雅”。还有其他一些Azure服务可以代替使用吗?我想这将是我容器顶部的一种层,它将充当用户和我的容器之间的代理,从而增加HTTPS支持。

我看到了https://docs.microsoft.com/en-us/azure/container-instances/container-instances-container-group-ssl,但是我不知道如何管理秘密卷上的证书。证书过期后如何更改证书?

1 个答案:

答案 0 :(得分:1)

您可以为此使用Azure App Service for Containers。它带有内置的SSL证书和许多其他容器实例无法提供的东西-成本更高。

az webapp create --resource-group myResourceGroup --plan myAppServicePlan --name <app-name> --deployment-container-image-name influxdb:latest

有关更多的配置选项(例如持久性存储),请参见here