美文网首页
csi-driver-samba

csi-driver-samba

作者: 大鹏一怒乘风起 | 来源:发表于2021-08-17 14:37 被阅读0次

    https://github.com/kubernetes-csi/csi-driver-smb/blob/master/docs/install-csi-driver-master.md

    Install SMB CSI driver master version on a Kubernetes cluster

    Install by kubectl

    curl -skSL https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/deploy/install-driver.sh | bash -s master --
    
    • check pods status:
    kubectl -n kube-system get pod -o wide --watch -l app=csi-smb-controller
    kubectl -n kube-system get pod -o wide --watch -l app=csi-smb-node
    

    example output:

    NAME                                        READY   STATUS    RESTARTS   AGE     IP            NODE                                NOMINATED NODE   READINESS GATES
    csi-smb-controller-788486959d-5qmn7         3/3     Running   0          23s     10.244.0.45   aks-agentpool-60632172-vmss000006   <none>           <none>
    csi-smb-controller-788486959d-g4hpm         3/3     Running   0          32s     10.244.1.33   aks-agentpool-60632172-vmss000007   <none>           <none>
    csi-smb-node-4gwzl                          3/3     Running   0          15s     10.244.1.34   aks-agentpool-60632172-vmss000007   <none>           <none>
    csi-smb-node-hg76w                          3/3     Running   0          27s     10.244.0.44   aks-agentpool-60632172-vmss000006   <none>           <none>
    

    clean up SMB CSI driver

    curl -skSL https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/deploy/uninstall-driver.sh | bash -s --
    

    相关文章

      网友评论

          本文标题:csi-driver-samba

          本文链接:https://www.haomeiwen.com/subject/qzfibltx.html