बड़े पैमाने पर ब्लॉग पोस्टों से प्रेरित और पहले से ही अन्य उत्तरों में जुड़े हुए, यहाँ मेरी समस्या है।
मैंने स्नैपशॉट की सूची प्राप्त करने और आवश्यकता नहीं करने के लिए कुछ जटिल JMESpath फ़ंक्शन का उपयोग किया tr
।
डिस्क्लेमर : अपने जोखिम पर उपयोग करें , मैंने किसी भी समस्या से बचने और समझदार चूक रखने के लिए अपनी पूरी कोशिश की, लेकिन अगर यह आपके लिए समस्या का कारण है तो मैं कोई दोष नहीं लूंगा।
#!/bin/sh
# remove x if you don't want to see the commands
set -ex
# Some variable initialisation with sane defaults
DRUN='--dry-run'
DO_DELETE=${1:-'no'}
REGION=${2:-'eu-west-1'}
ACCOUNTID=${3:-'self'}
# Get two temporary files
SNAP_FILE=$(mktemp)
IMAGE_FILE=$(mktemp)
# Get the snapshot list and the volume list
aws --region "$REGION" ec2 describe-snapshots --owner-ids "$ACCOUNTID" --query 'Snapshots[*].[SnapshotId]' --output text > "$SNAP_FILE"
aws --region "$REGION" ec2 describe-images --owners "$ACCOUNTID" --filters Name=state,Values=available --query 'Images[*].BlockDeviceMappings[*].Ebs.[SnapshotId]' --output text > "$IMAGE_FILE"
# Check if the outputed command should be dry-run (default) or not
if [ "$DO_DELETE" = "IAMSURE" ]
then
DRUN=''
fi
# count each snapshot id, decrease when a volume reference it, print delete command for those with no volumes
awk -v REGION="$REGION" -v DRUN="$DRUN" '
FNR==NR { snap[$1]++; next } # increment snapshots and get to next line in file immediately
{ snap[$1]-- } # we changed file, decrease the snap counter when a volume reference it
END {
for (s in snap) { # loop over the snapshots
if (snap[s] > 0) { # if we did not decrese under 1 that means there is no volume referencing this snapshot
cmd="aws --region " REGION " " DRUN " ec2 delete-snapshot --snapshot-id " s
print(cmd)
}
}
}
' "$SNAP_FILE" "$IMAGE_FILE"
# Clean up the temp files
rm "$SNAP_FILE" "$IMAGE_FILE"
मुझे उम्मीद है कि स्क्रिप्ट में ही पर्याप्त टिप्पणी की गई है।
डिफ़ॉल्ट उपयोग (नो-पैराम्स) चालू खाते और क्षेत्र के लिए अनाथ स्नैपशॉट के कमांड को हटा देगा, जो कि उत्तर-पश्चिम -1, एक्सट्रैक्ट:
aws --region eu-west-1 --dry-run ec2 delete-snapshot --snapshot-id snap-81e5856a
aws --region eu-west-1 --dry-run ec2 delete-snapshot --snapshot-id snap-95c68c7e
aws --region eu-west-1 --dry-run ec2 delete-snapshot --snapshot-id snap-a3bf50bd
आप सभी आउटपुट को निष्पादित करने के लिए सोर्सिंग से पहले समीक्षा के लिए इस आउटपुट को एक फ़ाइल पर पुनर्निर्देशित कर सकते हैं।
आप स्क्रिप्ट के बजाय उन्हें मुद्रण के आदेश पर अमल करना चाहते हैं, की जगह print(cmd)
से system(cmd)
।
उपयोग एक स्क्रिप्ट के नाम के अनुसार है snap_cleaner
:
हमारे-पश्चिम -1 क्षेत्र में शुष्क-रन कमांड के लिए
./snap_cleaner no us-west-1
यूरोपीय-मध्य -1 में प्रयोग करने योग्य आदेशों के लिए
./snap_cleaner IAMSURE eu-central-1
तीसरे पैरामीटर का उपयोग किसी अन्य खाते तक पहुंचने के लिए किया जा सकता है (मैं पहले किसी अन्य खाते में भूमिका स्विच करना पसंद करता हूं)।
ऑनलाइनर के रूप में awk स्क्रिप्ट के साथ स्क्रिप्ट के संस्करण को नीचे ले जाया गया:
#!/bin/sh
set -ex
# Some variable initialisation with sane defaults
DRUN='--dry-run'
DO_DELETE=${1:-'no'}
REGION=${2:-'eu-west-1'}
ACCOUNTID=${3:-'self'}
# Get two temporary files
SNAP_FILE=$(mktemp)
IMAGE_FILE=$(mktemp)
# Get the snapshot list and the volume list
aws --region "$REGION" ec2 describe-snapshots --owner-ids "$ACCOUNTID" --query 'Snapshots[*].[SnapshotId]' --output text > "$SNAP_FILE"
aws --region "$REGION" ec2 describe-images --owners "$ACCOUNTID" --filters Name=state,Values=available --query 'Images[*].BlockDeviceMappings[*].Ebs.[SnapshotId]' --output text > "$IMAGE_FILE"
# Check if the outputed command should be dry-run (default) or not
if [ "$DO_DELETE" = "IAMSURE" ]
then
DRUN=''
fi
# count each snapshot id, decrease when a volume reference it, print delete command for those with no volumes
awk -v REGION="$REGION" -v DRUN="$DRUN" 'FNR==NR { snap[$1]++; next } { snap[$1]-- } END { for (s in snap) { if (snap[s] > 0) { cmd="aws --region " REGION " " DRUN " ec2 delete-snapshot --snapshot-id " s; print(cmd) } } }' "$SNAP_FILE" "$IMAGE_FILE"
# Clean up the temp files
rm "$SNAP_FILE" "$IMAGE_FILE"