~chad.smith/pycloudlib:ec2/list-keys

Last commit made on 2020-07-13
Get this branch:
git clone -b ec2/list-keys https://git.launchpad.net/~chad.smith/pycloudlib
Only Chad Smith can upload to this branch. If you are Chad Smith please log in for upload directions.

Branch merges

Branch information

Name:
ec2/list-keys
Repository:
lp:~chad.smith/pycloudlib

Recent commits

92d0105... by Chad Smith

ec2: add list_keys cloud operation

45b554f... by Chad Smith

paramiko bump version to 2.7.1

55cc033... by Chad Smith

update boto deps for IP support on vpc instances

2a67487... by Paride Legovini

Improve the instance restart waiting logic

Changes:
 - Make _ssh_connect() raise an exception on failure
 - Handle more exceptions in the restart() wait loop
 - Check if the instance actually restarted after waiting
 - Bump the deps on botocore and boto3. According to the
   upstream commit history the newer versions should handle
   the slow-to-deploy/reboot/delete metal instances better.

9f5248a... by Paride Legovini

Add a LOCAL_UBUNTU_ARCH module-level constant

This in contrast of defining a _local_ubuntu_arch class attribute for
the LXD and KVM classes.

0872df4... by Paride Legovini

Fix typo: s/provied/provided/

2cb4fcd... by Paride Legovini

Support KVM instances via multipass

3ec4cc2... by Paride Legovini

LXD: support image lookups

Changes:
 - EC2: bring the simplestreams lookup methods from to a higher
   class, to be shared with LXD and eventually other clouds
 - implement the LXD image lookup methods
 - use the local architecture by default when launching images
 - do not make wait_for_delete()/_stop() raise NotImplementedError
 - requirements.txt: bump the paramiko dependency to v2.6.0
 - workaround the "ZFS dataset is busy" issue

48df3d7... by Paride Legovini

Increase the SSH timeout from 5min to 10min

When dealing with booting/rebooting bare metal instances 5 minutes are
sometimes not enough.

06fd4fc... by Paride Legovini

Reimplement pull_file/push_file using sftp

The previous implementation handled the data to transfer as a string
and hence was not suitable for transferring binary files.