我一直在尝试在 Azure AKS 上托管的 Kubernetes pod 上挂载文件共享。到目前为止,我已经尝试:
1. 通过 base64 编码名称和密钥成功创建了一个秘密
2. 通过指定正确的配置创建一个 yaml
3. 一旦我使用它应用它kubectl apply -f azure-file-pod.yaml
,它会给我以下错误:
输出:安装错误:无法解析 demo.file.core.windows.net 的地址:未知错误
我有一个名为demo
.
这是我的 yaml 文件:
apiVersion: v1
kind: Pod
metadata:
name: azure-files-pod
spec:
containers:
- image: microsoft/sample-aks-helloworld
name: azure
volumeMounts:
- name: azure
mountPath: /mnt/azure
volumes:
- name: azure
azureFile:
secretName: azure-secret
shareName: demo
readOnly: false
这怎么可能解决?