Skip to content

Instantly share code, notes, and snippets.

View Narayana108's full-sized avatar
🕉️
Reprogramming the brain

Śrī Nārāyaṇa Dāsa Narayana108

🕉️
Reprogramming the brain
  • Vaikuṇṭha
  • 127.0.0.1
View GitHub Profile
@redmcg
redmcg / kubedf
Last active September 5, 2025 15:25
Bash script to show k8s PVC usage
#!/usr/bin/env bash
NODESAPI=/api/v1/nodes
function getNodes() {
kubectl get --raw $NODESAPI | jq -r '.items[].metadata.name'
}
function getPVCs() {
jq -s '[flatten | .[].pods[].volume[]? | select(has("pvcRef")) | '\