删除 Azure 容器服务是否会删除任何相关的已配置资源?

Will deleting an Azure Container Service delete any related, provisioned resources?

我的订阅中有一个旧的 Azure 容器服务,我已经将所有内容迁移到 AKS,我想删除旧的 ACS。

作为迁移到 AKS 的一部分,我重新使用了与 ACS 群集相关的存储帐户,我想确定它不会在我删除 ACS 群集时被删除。

文档指出 "The operation does not delete other resources created as part of creating a container service":https://docs.microsoft.com/en-us/rest/api/container-service/containerservices/delete

但我在 Github 上发现了一些问题,这意味着情况可能不再如此:

[ACS] Deleting an ACS instance only deletes the "logical" ACS resource 上有人评论 "This behavior is no longer the case--az acs delete removes all the expected resources"

Deleting Container Service leaves provisioned resources around 上有人在 2017 年说 "No ETA. but it is what we are actively working on [it]"

那么有什么方法可以确定删除集群时会删除什么?还是我应该备份所有内容并希望一切顺利?

我会在存储帐户上创建一个删除锁并删除 ACS 群集。或者我只是一个一个地删除 ACS 资源。这样就不会有意外删除存储帐户的风险。