Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save antonfisher/9bc1404b0c002b10e6e55fd9e5852427 to your computer and use it in GitHub Desktop.
Save antonfisher/9bc1404b0c002b10e6e55fd9e5852427 to your computer and use it in GitHub Desktop.
Install NexentaStor CSI Driver to MicroK8s

Install NexentaStor CSI Driver to MicroK8s

Requirements

  • Ubuntu 18.04
  • root user access

Steps

  1. Install dependencies:
apt update
apt install -y rpcbind nfs-common cifs-utils
  1. Install microk8s:
snap install microk8s --classic --channel=1.12/edge
  1. Create directory for kubelet mounts:
mkdir -p /var/lib/kubelet/pods
  1. Add --allow-privileged=true to:
# kubelet config
# - add `--allow-privileged=true`
# - add `--feature-gates=VolumeSnapshotDataSource=true,KubeletPluginsWatcher=true,CSINodeInfo=true,CSIDriverRegistry=true`
vim /var/snap/microk8s/current/args/kubelet
systemctl restart snap.microk8s.daemon-kubelet.service

#kube-apiserver config
# - add `--allow-privileged=true`
# - add `--feature-gates=VolumeSnapshotDataSource=true,KubeletPluginsWatcher=true,CSINodeInfo=true,CSIDriverRegistry=true`
vim /var/snap/microk8s/current/args/kube-apiserver
systemctl restart snap.microk8s.daemon-apiserver.service

TODO: use function

  1. Allow Docker to use local registry [only if needed]:
vim /var/snap/microk8s/current/args/docker-daemon.json # add `{"insecure-registries":["10.3.199.92:5000"]}`
systemctl restart snap.microk8s.daemon-docker.service
  1. Enable microk8s dns:
microk8s.enable dns
  1. Allow pods to reach internet:
iptables -P FORWARD ACCEPT
  1. Create CSI driver k8s types:
microk8s.kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/ce972859c46136a1f4a9fe119d05482a739c6311/pkg/crd/manifests/csidriver.yaml
microk8s.kubectl create -f https://raw.githubusercontent.com/kubernetes/csi-api/ce972859c46136a1f4a9fe119d05482a739c6311/pkg/crd/manifests/csinodeinfo.yaml
  1. Clone the repository:
git clone https://github.com/Nexenta/nexentastor-csi-driver.git
cd nexentastor-csi-drive
  1. Create secret:
# secret for local registry
microk8s.kubectl create secret generic nexentastor-csi-driver-config-manual --from-file=./tests/deploy/driver-config-manual.yaml
# OR
# secret for hub.docker.com
microk8s.kubectl create secret generic nexentastor-csi-driver-config --from-file=./tests/deploy/driver-config-manual.yaml
  1. Replace all /var/lib/kubelet/* paths by microk8s ones: /var/snap/microk8s/common/var/lib/kubelet/* (kubelet's --root-dir argument) in any config files.

  2. Deploy CSI driver:

# master for local registry
microk8s.kubectl apply -f ./tests/deploy/microk8s/driver-local-manual.yaml
# OR
# master for hub.docker.com (NEED PATH FIX, SEE #11)
microk8s.kubectl apply -f ./deploy/kubernetes/master/nexentastor-csi-driver-master.yaml
  1. Validate if it works:
watch -n1 --diff microk8s.kubectl get all
  1. Deploy Nginx example
kubectl apply -f ./deploy/kubernetes/examples/nginx-storage-class.yaml
@velcrine
Copy link

velcrine commented Jun 1, 2021

Thanks very much for this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment