$ kubectl --namespace velero portforward deploy/velero 8085:8085
$ while true; do curl http://localhost:8085/metrics | grep -E \
echo "Creating a Kubernetes 1.17 cluster using Kind..." | |
kind create cluster --image=kindest/node:v1.17.0 --name csi-117 | |
# https://github.com/ashish-amarnath/csi-driver-host-path/tree/deploy-1.17 | |
cd /Users/ashisham/work/kubernetes/src/code/csi-driver-host-path/ | |
echo "Deploying hostpath plugin from $(PWD), from branch $(git branch | grep "*") *" | |
read -p "Press enter to deploy" | |
./deploy/kubernetes-1.17/deploy-hostpath.sh | |
# from https://github.com/ashish-amarnath/external-snapshotter/tree/deploy-1.17 |
function scrapeEmail() { | |
var sheet = SpreadsheetApp.getActiveSheet(); | |
var threads = GmailApp.search("from:[email protected] OR [email protected] "); | |
sheet.getRange(1,1).setValue("Date"); | |
sheet.getRange(1,2).setValue("Time"); | |
sheet.getRange(1,3).setValue("Coach"); | |
sheet.getRange(1,4).setValue("Location"); | |
sheet.getRange(1,5).setValue("Minutes in Grey Zone"); | |
sheet.getRange(1,6).setValue("Minutes in Blue Zone"); | |
sheet.getRange(1,7).setValue("Minutes in Green Zone"); |
This gist is a follow-up to the CSI Integration blog post on the Velero website. Updates here include:
v0.1.2
release of velero-plugin-for-csi
[v1.1.1
release of velero-plugin-for-microsoft-azure
](https://github.com/vmware-tanzu/velero-plugin-for-microsoft-azure/releases/tag/v1.1.1)v1.5.2
release of VeleroBelow are the updated set of instructions to
v1.18.6
is used.