0

我想知道是否有办法为实例(更具体地说是磁盘)创建自动备份保留。我对控制台不是很有经验,所以我更喜欢 GUI 方式,但如果没有,我会很高兴了解控制台方法。

我一直在寻找这个,但只找到了 SQL 的解决方案。

谢谢!

4

2 回答 2

1

更新:

自从我第一次给出这个答案以来,脚本已经发生了很大变化 - 请参阅 Github repo 获取最新代码:https ://github.com/jacksegal/google-compute-snapshot

原始答案:

我遇到了同样的问题,所以我创建了一个简单的 shell 脚本来拍摄每日快照并删除 7 天内的所有快照:https ://github.com/jacksegal/google-compute-snapshot

#!/usr/bin/env bash
export PATH=$PATH:/usr/local/bin/:/usr/bin

#
# CREATE DAILY SNAPSHOT
#

# get the device name for this vm
DEVICE_NAME="$(curl -s "http://metadata.google.internal/computeMetadata/v1/instance/disks/0/device-name" -H "Metadata-Flavor: Google")"

# get the device id for this vm
DEVICE_ID="$(curl -s "http://metadata.google.internal/computeMetadata/v1/instance/id" -H "Metadata-Flavor: Google")"

# get the zone that this vm is in
INSTANCE_ZONE="$(curl -s "http://metadata.google.internal/computeMetadata/v1/instance/zone" -H "Metadata-Flavor: Google")"

# strip out the zone from the full URI that google returns
INSTANCE_ZONE="${INSTANCE_ZONE##*/}"

# create a datetime stamp for filename
DATE_TIME="$(date "+%s")"

# create the snapshot
echo "$(gcloud compute disks snapshot ${DEVICE_NAME} --snapshot-names gcs-${DEVICE_NAME}-${DEVICE_ID}-${DATE_TIME} --zone ${INSTANCE_ZONE})"


#
# DELETE OLD SNAPSHOTS (OLDER THAN 7 DAYS)
#

# get a list of existing snapshots, that were created by this process (gcs-), for this vm disk (DEVICE_ID)
SNAPSHOT_LIST="$(gcloud compute snapshots list --regexp "(.*gcs-.*)|(.*-${DEVICE_ID}-.*)" --uri)"

# loop through the snapshots
echo "${SNAPSHOT_LIST}" | while read line ; do

   # get the snapshot name from full URL that google returns
   SNAPSHOT_NAME="${line##*/}"

   # get the date that the snapshot was created
   SNAPSHOT_DATETIME="$(gcloud compute snapshots describe ${SNAPSHOT_NAME} | grep "creationTimestamp" | cut -d " " -f 2 | tr -d \')"

   # format the date
   SNAPSHOT_DATETIME="$(date -d ${SNAPSHOT_DATETIME} +%Y%m%d)"

   # get the expiry date for snapshot deletion (currently 7 days)
   SNAPSHOT_EXPIRY="$(date -d "-7 days" +"%Y%m%d")"

   # check if the snapshot is older than expiry date
if [ $SNAPSHOT_EXPIRY -ge $SNAPSHOT_DATETIME ];
        then
     # delete the snapshot
         echo "$(gcloud compute snapshots delete ${SNAPSHOT_NAME} --quiet)"
   fi
done
于 2016-09-06T19:40:54.973 回答
0

关于这个非常有用的脚本的两条评论(如果您使用的是上面的那个)

线

--regexp "( .gcs-. )|( .- ${DEVICE_ID}-. )"

可能有错误;这列出了以 GCS 开头的所有内容,我认为它应该阅读

--regexp "( .gcs-. )-( .- ${DEVICE_ID}-. )"

至少这是我用来输出预期结果的那个

此外,这个 --regexp 现在已被弃用,如果你关心警告,你可以使用

SNAPSHOT_LIST="$(gcloud 计算快照列表 --filter="name~'(. gcs-. )-( .- ${DEVICE_ID}-. )'" --uri)"

作者在他的 git 上有一个更新的版本,这些只是对上述脚本的评论。正则表达式相当危险,因为上述脚本基本上使用相同的脚本从其他虚拟机中删除快照。

于 2017-09-15T13:15:08.643 回答