This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Iqbal Achieve | |
Nina Armenian | |
Forrest Ash | |
Martin Aynuss | |
Kikini Bamalam | |
Dominic Bambercrunch | |
Whack Barnet | |
Danny Bear | |
Weech Beacon | |
Derek Bildings |
This is a living document. Everything in this document is made in good faith of being accurate, but like I just said; we don't yet know everything about what's going on.
Update: I've disabled comments as of 2025-01-26 to avoid everyone having notifications for something a year on if someone wants to suggest a correction. Folks are free to email to suggest corrections still, of course.
This is a guide for installing the generic NFS-CSI driver.
https://github.com/kubernetes-csi/csi-driver-nfs/blob/master/docs/install-csi-driver-v4.11.0.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# LICENSE: MIT | |
# This takes a PVC name and namespace then flattens the boot disk (to get it off a backed image disk). | |
# Exit if there's none provided. | |
if [ -z $1 ] && [ -z $2 ]; then | |
echo "You need to provide a pvcname and namespace for the disk you want to flatten." | |
exit 1 | |
fi | |