K8s/CSI Hostpath Driver: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 51: Line 51:
{|
{|
| valign="top" |
| valign="top" |
* [https://stackoverflow.com/questions/67345577/ K8s » Connect multiple pods to the same PVC]
* [https://minikube.sigs.k8s.io/docs/tutorials/volume_snapshots_and_csi/ K8s » CSI Driver and Volume Snapshots]
* [https://minikube.sigs.k8s.io/docs/tutorials/volume_snapshots_and_csi/ K8s » CSI Driver and Volume Snapshots]
* [https://discuss.kubernetes.io/t/understanding-csi-architecture-and-communication/9404 K8s » Understanding CSI architecture]
* [https://discuss.kubernetes.io/t/understanding-csi-architecture-and-communication/9404 K8s » Understanding CSI architecture]
Line 56: Line 57:
* [https://kubernetes.io/blog/2020/01/08/testing-of-csi-drivers/ K8s » Testing of CSI Drivers]
* [https://kubernetes.io/blog/2020/01/08/testing-of-csi-drivers/ K8s » Testing of CSI Drivers]
* [https://kubernetes-csi.github.io/docs/deploying.html K8s » Deploying CSI Driver]
* [https://kubernetes-csi.github.io/docs/deploying.html K8s » Deploying CSI Driver]
* [https://github.com/kubernetes-sigs/aws-ebs-csi-driver K8s » AWS EBS CSI Driver]
* [https://www.velotio.com/engineering-blog/kubernetes-csi-in-action-explained-with-features-and-use-cases K8s » CSI in Action]
* [https://www.velotio.com/engineering-blog/kubernetes-csi-in-action-explained-with-features-and-use-cases K8s » CSI in Action]



Revision as of 10:46, 2 August 2024

sudo -i -u minikube
minikube config
minikube stop
minikube start
minikube docker-env
minikube addons list
minikube addons enable ingress
minikube addons enable ingress-dns
minikube addons enable metrics-server

minikube addons enable volumesnapshots
minikube addons enable csi-hostpath-driver
minikube addons enable storage-provisioner
kubectl get ns
kubectl get all
kubectl get all -A
minikube kubectl -- get ns
minikube kubectl -- get all
minikube kubectl -- get all -A

References