简体   繁体   English

AWS EFS 接入点挂载

[英]AWS EFS Access Point mount

I have a AWS EFS created and I have also created an access point: /ap我创建了一个 AWS EFS,还创建了一个访问点: /ap

I want to mount that AP into the Kubernetes deployment, but it's failing, although when I use / it works.我想将该 AP 安装到 Kubernetes 部署中,但它失败了,尽管当我使用/时它可以工作。

These are the manifests I am using.这些是我正在使用的清单。

PV光伏

apiVersion: v1
kind: PersistentVolume
metadata:
  name: efs-pv
spec:
  accessModes:
  - ReadWriteMany
  capacity:
    storage: 1Mi
  mountOptions:
  - rsize=1048576
  - wsize=1048576
  - hard
  - timeo=600
  - retrans=2
  - noresvport
  persistentVolumeReclaimPolicy: Retain
  nfs:
    path: /ap
    server: fs-xxx.efs.region.amazonaws.com
  claimRef:
    name: efs-pvc
    namespace: product

PVC PVC

apiVersion: v1
kind: PersistentVolumeClaim
metadata:
  name: efs-pvc
  namespace: product
spec:
  storageClassName: ""
  accessModes:
    - ReadWriteMany
  resources:
    requests:
      storage: 1Mi

And I receive this upon starting a deployment.我在开始部署时收到此消息。

Unable to attach or mount volumes: unmounted volumes=[data], unattached volumes=[data default-token-qwclp]: timed out waiting for the condition
Mounting command: systemd-run
Mounting arguments: --description=Kubernetes transient mount for /var/lib/kubelet/pods/97e66236-cb08-4bee-82a7-6f6cf1db9353/volumes/kubernetes.io~nfs/efs-pv --scope -- mount -t nfs -o hard,noresvport,retrans=2,rsize=1048576,timeo=600,wsize=1048576 fs-559a4f0e.efs.eu-central-1.amazonaws.com:/atc /var/lib/kubelet/pods/97e66236-cb08-4bee-82a7-6f6cf1db9353/volumes/kubernetes.io~nfs/efs-pv
Output: Running scope as unit run-4806.scope.
mount.nfs: Connection timed out

Am I missing something?我错过了什么吗? Or should I use CSI driver instead?还是应该改用 CSI 驱动程序?

i strongly suggest you to follow this steps:我强烈建议您按照以下步骤操作:

step 1: deploy efs csi drivers on your nodes第 1 步:在您的节点上部署 efs csi 驱动程序

link: https://github.com/kubernetes-sigs/aws-efs-csi-driver链接: https://github.com/kubernetes-sigs/aws-efs-csi-driver

step 2: make new PV and PVC using these tutorial第 2 步:使用这些教程制作新的 PV 和 PVC

link: https://github.com/kubernetes-sigs/aws-efs-csi-driver/blob/master/examples/kubernetes/volume_path/README.md链接: https://github.com/kubernetes-sigs/aws-efs-csi-driver/blob/master/examples/kubernetes/volume_path/README.md

now, if you want to specify a path for folder then you can follow this tutorial现在,如果您想为文件夹指定路径,那么您可以按照本教程进行操作

link: https://github.com/kubernetes-sigs/aws-efs-csi-driver/blob/master/examples/kubernetes/volume_path/specs/example.yaml链接: https://github.com/kubernetes-sigs/aws-efs-csi-driver/blob/master/examples/kubernetes/volume_path/specs/example.yaml

it worked for me.它对我有用。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM