Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
# Script to delete all EBS volumes in us-east-2
# WARNING: This will permanently delete ALL EBS volumes in the region
REGION="us-east-2"
echo "WARNING: This will delete ALL EBS volumes in $REGION"
echo "This action is IRREVERSIBLE and will cause DATA LOSS"
read -p "Type 'DELETE' to confirm: " confirmation
@arturre
arturre / pod.yaml
Last active April 11, 2025 19:47
ubuntu
apiVersion: v1
kind: Pod
metadata:
name: ubuntu
labels:
app: ubuntu
spec:
containers:
- image: ubuntu
command:
#!/usr/bin/env python3
from argparse import ArgumentParser
import logging
import os
import sys
import requests
import gzip
from collections import defaultdict, OrderedDict
from pprint import pprint