Как мне создать образ EC2 из работающего экземпляра, используя boto? - PullRequest
9 голосов
/ 10 марта 2011

Я пытаюсь создать простой скрипт резервного копирования Python для моих экземпляров EC2.Цель этого сценария - создавать ежедневные / еженедельные снимки текущего компьютера (см. этот вопрос по ServerFault ).Я использую пакет boto python для EC2 API и хотел бы создать EBS AMI из данного экземпляра (например, действие ElasticFox «Создать изображение»)

# This script will look up all your running EC2 images, find the current one, and back it up by creating an AMI 

# Configuration
accessKeyId = "..."
accessKeySecret = "..."
target = "..."

def resolveIp(target):
    import socket
    ip = repr(socket.gethostbyname_ex(target)[2][0])
    return ip

def find_target(target, connection) :
    ip = resolveIp(target)
    print "Finding instance for " + target + " (IP " + ip + ")"
    reservations = connection.get_all_instances();
    for reservation in reservations:
        instances = reservation.instances
        if len(instances) != 1:
            print "Skipping reservation " + reservation
            continue
        instance = instances[0]
        instanceIp = resolveIp(instance.dns_name)
        if instanceIp == ip:
            return instance

    raise Exception("Can't find instance with IP " + ip)

from boto.ec2.connection import EC2Connection

print "Connecting to EC2"
conn = EC2Connection(accessKeyId, accessKeySecret)
print "Connected to EC2"

instance = find_target(target, conn)
print "Backing up instance '{}'".format(instance)

# Now, I'd like to create a new image out of this instance
# Can you help?

(такжесообщается как проблема на странице проекта boto , так как я не нашел список рассылки)

1 Ответ

9 голосов
/ 10 марта 2011

Требуется метод create_image объекта EC2Connection.Смотри документы здесь .Вы также можете задавать вопросы пользователям boto Google Group.

...