gpt4 book ai didi

azure - 您可以从不同区域在 AKS Kubernetes 群集上安装 NetApp 卷吗?

转载 作者:行者123 更新时间:2023-12-03 05:37:54 24 4
gpt4 key购买 nike

我正在使用 Azure NetApp 文件和 AKS。假设我在一个区域有一个 NetApp 帐户和一个 NetApp 池,并且我想在另一个区域的 k8s 集群中的 pod 上挂载一个卷。这可能吗?到目前为止,我收到一条错误消息,指出 pod 无法挂载该卷并且超时。

Unable to mount volumes for pod "x": timeout expired waiting for volumes to attach or mount for pod "x"

我的 PersistentVolume 和 PersistentVolumeClaim yaml 文件如下所示:

apiVersion: v1
kind: PersistentVolume
metadata:
name: test
finalizers : null
labels:
type: nfs
spec:
capacity:
storage: 200Gi
accessModes:
- ReadWriteMany
persistentVolumeReclaimPolicy: Retain
nfs:
server: 1.2.3.4
path: /test-volume
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: test
namespace: myNamespace
finalizers: null
spec:
accessModes:
- ReadWriteMany
storageClassName: ""
resources:
requests:
storage: 200Gi
selector:
matchLabels:
type: nfs

最佳答案

不幸的是,恐怕你无法实现它。在 AKS 的 Azure NetApp 文件的限制中,它显示 here :

Azure NetApp Files service must be created in the same virtual network as your AKS cluster.

您知道,AKS 的虚拟网络应该与 AKS 位于同一区域,然后才能使用。因此,您无法将不同区域中的 Azure NetApp 文件挂载到 AKS。

关于azure - 您可以从不同区域在 AKS Kubernetes 群集上安装 NetApp 卷吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61063081/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com