Skip to content

Instantly share code, notes, and snippets.

@vebutton
vebutton / gist:e86221f3c29eea4517a7a54223a8a1f5
Last active December 13, 2025 14:44
patch-pvc-annotation
cleanpvc() {
if [ -z "$1" ]; then
echo "Error: Please provide a Persistent Volume Claim (PVC) name."
echo "Usage: cleanpvc <pvc-name>"
return 1
fi
local PVC_NAME="$1"
echo "Attempting to remove system annotations from PVC: ${PVC_NAME}..."
@vebutton
vebutton / patch-tvk-console.txt
Last active October 20, 2025 17:23
Enable TVK Console
# Forget to install the Trilio console plugin to Openshift?
# Add it via the CLI. Wait a minute for it to reconcile.
oc patch consoles.operator.openshift.io cluster --type=merge -p '{"spec":{"plugins": ["trilio-console-plugin"]}}'