-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Authorized SSH keys for VM's based on cloud image
- Loading branch information
Showing
6 changed files
with
106 additions
and
142 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -276,6 +276,21 @@ class TestMachinesCreate(VirtualMachinesCase): | |
os_short_id=config.FEDORA_28_SHORTID, | ||
create_and_run=True)) | ||
|
||
# try to CREATE few machines | ||
# --cloud-init user-data option exists since virt-install >= 3.0.0 | ||
runner.createCloudBaseImageTest(TestMachinesCreate.VmDialog(self, sourceType='cloud', | ||
storage_size=10, storage_size_unit='MiB', | ||
location=config.VALID_DISK_IMAGE_PATH, | ||
os_name=config.FEDORA_28, | ||
os_short_id=config.FEDORA_28_SHORTID, | ||
user_password="catsaremybestfr13nds", | ||
user_login="foo", | ||
root_password="dogsaremybestfr13nds", | ||
ssh_keys=[ | ||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMTkmGaPexteXFD9bNdTq23UdZ5dsDexAAT9Y16T7lgW [email protected]" | ||
], | ||
create_and_run=True)) | ||
|
||
def testCreateDownloadAnOS(self): | ||
runner = TestMachinesCreate.CreateVmRunner(self) | ||
config = TestMachinesCreate.TestCreateConfig | ||
|
@@ -802,6 +817,7 @@ vnc_password= "{vnc_passwd}" | |
root_password=None, | ||
user_password=None, | ||
user_login=None, | ||
ssh_keys=None, | ||
storage_pool=NEW_VOLUME_QCOW2, storage_volume='', | ||
create_and_run=False, | ||
delete=True, | ||
|
@@ -847,6 +863,7 @@ vnc_password= "{vnc_passwd}" | |
self.root_password = root_password | ||
self.user_password = user_password | ||
self.user_login = user_login | ||
self.ssh_keys = ssh_keys | ||
self.create_and_run = create_and_run or is_unattended | ||
self.storage_pool = storage_pool | ||
self.storage_volume = storage_volume | ||
|
@@ -1073,6 +1090,10 @@ vnc_password= "{vnc_passwd}" | |
|
||
self.assertIn("\nssh_pwauth: true", user_data) | ||
|
||
if self.ssh_keys is not None: | ||
for key in self.ssh_keys: | ||
self.assertIn(key, user_data) | ||
|
||
# --unattended option is conflicting with --cloud-init option, resulting --cloud-init user_data being ignored | ||
# https://bugzilla.redhat.com/show_bug.cgi?id=2096200#c14 | ||
self.assertNotIn("--unattended", virt_install_cmd_out) | ||
|
@@ -1234,6 +1255,10 @@ vnc_password= "{vnc_passwd}" | |
b.set_input_text("#user-login", self.user_login) | ||
if self.root_password: | ||
b.set_input_text("#create-vm-dialog-root-password-pw1", self.root_password) | ||
if self.ssh_keys is not None: | ||
for idx, key in enumerate(self.ssh_keys): | ||
b.click("button:contains(Add SSH keys)") | ||
b.set_input_text(f"#create-vm-dialog-ssh-key-{idx} textarea", key, value_check=False, blur=False) | ||
|
||
if self.is_unattended: | ||
b.wait_visible("#create-and-edit[aria-disabled=true]") | ||
|