This repository is for performing an use case of mounting on premises SMB share on Windows Server to Kubernetes cluster in Linux Pods
Below are the steps to be carried out
- Provision a k8s cluster
- Deploy a VM and create a SMB share
- Install the csi-smb driver using helm/kubectl from this link
- Create a secret with the credentials of the user created for the SMB share using the below commands
kubectl create secret generic share-creds --from-literal username="xxx" --from-literal password="xxx" -n default