Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set insecure_connection to target provider as default behavior. #327

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -51,18 +51,19 @@ def main
virtv2v_networks = task[:options][:virtv2v_networks]

wrapper_options = {
:vm_name => source_vm.name,
:transport_method => 'vddk',
:vmware_fingerprint => Transformation::Infrastructure::VM::VMware::Utils.get_vcenter_fingerprint(source_ems),
:vmware_uri => vmware_uri,
:vmware_password => source_ems.authentication_password,
:rhv_url => "https://#{destination_ems.hostname}/ovirt-engine/api",
:rhv_cluster => destination_cluster.name,
:rhv_storage => destination_storage.name,
:rhv_password => destination_ems.authentication_password,
:source_disks => source_disks,
:network_mappings => virtv2v_networks,
:install_drivers => true
:vm_name => source_vm.name,
:transport_method => 'vddk',
:vmware_fingerprint => Transformation::Infrastructure::VM::VMware::Utils.get_vcenter_fingerprint(source_ems),
:vmware_uri => vmware_uri,
:vmware_password => source_ems.authentication_password,
:rhv_url => "https://#{destination_ems.hostname}/ovirt-engine/api",
:rhv_cluster => destination_cluster.name,
:rhv_storage => destination_storage.name,
:rhv_password => destination_ems.authentication_password,
:source_disks => source_disks,
:network_mappings => virtv2v_networks,
:install_drivers => true,
:insecure_connection => true
}

# WARNING: Enable at your own risk, as it may lead to sensitive data leak
Expand Down