docker - 如何在Kubernetes中直接挂载外部NFS共享/卷(1.10.3)

标签 docker kubernetes

我正在使用kubernetes:v1.10.3,我有一台外部NFS服务器,可以在任何地方(任何物理机器)挂载。我想将此NFS直接安装到pod / container。我尝试过,但每次遇到错误时。不想使用特权,请帮助我修复。

ERROR: MountVolume.SetUp failed for volume "nfs" : mount failed: exit status 32 Mounting command: systemd-run Mounting arguments: --description=Kubernetes transient mount for /var/lib/kubelet/pods/d65eb963-68be-11e8-8181-00163eeb9788/volumes/kubernetes.io~nfs/nfs --scope -- mount -t nfs 10.225.241.137:/stagingfs/alt/ /var/lib/kubelet/pods/d65eb963-68be-11e8-8181-00163eeb9788/volumes/kubernetes.io~nfs/nfs Output: Running scope as unit run-43393.scope. mount: wrong fs type, bad option, bad superblock on 10.225.241.137:/stagingfs/alt/, missing codepage or helper program, or other error (for several filesystems (e.g. nfs, cifs) you might need a /sbin/mount. helper program) In some cases useful info is found in syslog - try dmesg | tail or so.


NFS server :  mount -t nfs 10.X.X.137:/stagingfs/alt   /alt    

我在这里增加了两件事,但是每次都会出错。

首先:
"volumeMounts": [
          {
            "name": "nfs",
            "mountPath": "/alt"
          }

        ],

第二:
 "volumes": [
  {
    "name": "nfs",
    "nfs": {
      "server": "10.X.X.137",
      "path": "/stagingfs/alt/"
    }
  }

],

---------------------完整的Yaml --------------------------- -----
{
  "kind": "Deployment",
  "apiVersion": "extensions/v1beta1",
  "metadata": {
    "name": "jboss",
    "namespace": "staging",
    "selfLink": "/apis/extensions/v1beta1/namespaces/staging/deployments/jboss",
    "uid": "6a85e235-68b4-11e8-8181-00163eeb9788",
    "resourceVersion": "609891",
    "generation": 2,
    "creationTimestamp": "2018-06-05T11:34:32Z",
    "labels": {
      "k8s-app": "jboss"
    },
    "annotations": {
      "deployment.kubernetes.io/revision": "2"
    }
  },
  "spec": {
    "replicas": 1,
    "selector": {
      "matchLabels": {
        "k8s-app": "jboss"
      }
    },
    "template": {
      "metadata": {
        "name": "jboss",
        "creationTimestamp": null,
        "labels": {
          "k8s-app": "jboss"
        }
      },
      "spec": {
          "volumes": [
      {
        "name": "nfs",
        "nfs": {
          "server": "10.X.X.137",
          "path": "/stagingfs/alt/"
        }
      }

    ],
        "containers": [
          {
            "name": "jboss",
            "image": "my.abc.com/alt:7.1_1.1",
            "resources": {},
            "volumeMounts": [
          {
            "name": "nfs",
            "mountPath": "/alt"
          }

        ],
            "terminationMessagePath": "/dev/termination-log",
            "terminationMessagePolicy": "File",
            "imagePullPolicy": "IfNotPresent",
            "securityContext": {
              "privileged": true
            }
          }
        ],
        "restartPolicy": "Always",
        "terminationGracePeriodSeconds": 30,
        "dnsPolicy": "ClusterFirst",
        "securityContext": {},
        "schedulerName": "default-scheduler"
      }
    },
    "strategy": {
      "type": "RollingUpdate",
      "rollingUpdate": {
        "maxUnavailable": "25%",
        "maxSurge": "25%"
      }
    },
    "revisionHistoryLimit": 10,
    "progressDeadlineSeconds": 600
  },
  "status": {
    "observedGeneration": 2,
    "replicas": 1,
    "updatedReplicas": 1,
    "readyReplicas": 1,
    "availableReplicas": 1,
    "conditions": [
      {
        "type": "Available",
        "status": "True",
        "lastUpdateTime": "2018-06-05T11:35:45Z",
        "lastTransitionTime": "2018-06-05T11:35:45Z",
        "reason": "MinimumReplicasAvailable",
        "message": "Deployment has minimum availability."
      },
      {
        "type": "Progressing",
        "status": "True",
        "lastUpdateTime": "2018-06-05T11:35:46Z",
        "lastTransitionTime": "2018-06-05T11:34:32Z",
        "reason": "NewReplicaSetAvailable",
        "message": "ReplicaSet \"jboss-8674444985\" has successfully progressed."
      }
    ]
  }
}

问候
阿努帕姆·纳拉扬(Anupam Narayan)

最佳答案

如错误日志中所述:

for several filesystems (e.g. nfs, cifs) you might need a /sbin/mount. helper program

根据此question,您可能会缺少可以使用sudo apt install nfs-common安装的nfs-commons软件包。

关于docker - 如何在Kubernetes中直接挂载外部NFS共享/卷(1.10.3),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50700645/

相关文章:

amazon-web-services - 在 Elastic Beanstalk 上设置 Docker 容器主机名

docker 容器名称有时在停止后已在使用中

python - 操作系统错误: [Errno 13] Permission denied when initializing Celery in Docker

Azure kubernetes - 多个托管身份?

docker - 如何在 Kubernetes 部署中引用从 tar 文件加载的本地 docker 镜像?

node.js - 无法通过Kubernetes上的Node.Js连接到Elasticsearch(证书链中的自签名证书)

docker - 容器的Azure DevOps作业步骤

docker - 无法拉取 docker 镜像 - 找不到存储库

kubernetes - 使用 RBAC 时, "kubectl auth reconcile"和 "kubectl apply"有什么区别?

kubernetes - 为什么删除 kubernetes 命名空间需要这么长时间?