[OpenStack] Support specifying an SSH key name when creating an instance

This commit introduces a new option - `keyname` - to the OpenStack
runner, which allows the user to specify the name of a keypair they want
to associate with the instance at the time of creation.

Signed-off-by: Nick Jones <nick@dischord.org>
This commit is contained in:
Nick Jones
2017-09-18 21:07:08 +01:00
parent 0968be802f
commit 0556812b63
6 changed files with 212 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
# LinuxKit with OpenStack
LinuxKit interacts with OpenStack through its native APIs and requires access and provides basic support for pushing images and launching virtual instances.
LinuxKit interacts with OpenStack through its native APIs, providing basic support for pushing images and launching virtual instances.
Supported (tested) versions of the relevant OpenStack APIs are:
@@ -64,6 +64,7 @@ linuxkit run openstack \
-username=admin \
-password=xxx \
-project=linuxkit \
-keyname=deadline_ed25519 \
-network c5d02c5f-c625-4539-8aed-1dab3aa85a0a \
LinuxKitTest
```