a41ab09311
Adding logger support. The default log file will be nsx_migration.log in the work directory. It can be changed using the --logfile option. In addition, add some minor fixes, and handle the case of 2 dhcp-enabled subnets which is not supported by the v3 plugin. Change-Id: Ie0f1aa2e8b4b23fbbf2036a2df6cc78634b027b3
124 lines
4.6 KiB
Python
124 lines
4.6 KiB
Python
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import argparse
|
|
|
|
from vmware_nsx.api_replay import client
|
|
|
|
DEFAULT_DOMAIN_ID = 'default'
|
|
DEFAULT_LOGFILE = 'nsx_migration.log'
|
|
|
|
|
|
class ApiReplayCli(object):
|
|
|
|
def __init__(self):
|
|
args = self._setup_argparse()
|
|
client.ApiReplayClient(
|
|
source_os_tenant_name=args.source_os_project_name,
|
|
source_os_tenant_domain_id=args.source_os_project_domain_id,
|
|
source_os_username=args.source_os_username,
|
|
source_os_user_domain_id=args.source_os_user_domain_id,
|
|
source_os_password=args.source_os_password,
|
|
source_os_auth_url=args.source_os_auth_url,
|
|
dest_os_tenant_name=args.dest_os_project_name,
|
|
dest_os_tenant_domain_id=args.dest_os_project_domain_id,
|
|
dest_os_username=args.dest_os_username,
|
|
dest_os_user_domain_id=args.dest_os_user_domain_id,
|
|
dest_os_password=args.dest_os_password,
|
|
dest_os_auth_url=args.dest_os_auth_url,
|
|
use_old_keystone=args.use_old_keystone,
|
|
logfile=args.logfile)
|
|
|
|
def _setup_argparse(self):
|
|
parser = argparse.ArgumentParser()
|
|
|
|
# Arguments required to connect to source
|
|
# neutron which we will fetch all of the data from.
|
|
parser.add_argument(
|
|
"--source-os-username",
|
|
required=True,
|
|
help="The source os-username to use to "
|
|
"gather neutron resources with.")
|
|
parser.add_argument(
|
|
"--source-os-user-domain-id",
|
|
default=DEFAULT_DOMAIN_ID,
|
|
help="The source os-user-domain-id to use to "
|
|
"gather neutron resources with.")
|
|
parser.add_argument(
|
|
"--source-os-project-name",
|
|
required=True,
|
|
help="The source os-project-name to use to "
|
|
"gather neutron resource with.")
|
|
parser.add_argument(
|
|
"--source-os-project-domain-id",
|
|
default=DEFAULT_DOMAIN_ID,
|
|
help="The source os-project-domain-id to use to "
|
|
"gather neutron resource with.")
|
|
parser.add_argument(
|
|
"--source-os-password",
|
|
required=True,
|
|
help="The password for this user.")
|
|
parser.add_argument(
|
|
"--source-os-auth-url",
|
|
required=True,
|
|
help="They keystone api endpoint for this user.")
|
|
|
|
# Arguments required to connect to the dest neutron which
|
|
# we will recreate all of these resources over.
|
|
parser.add_argument(
|
|
"--dest-os-username",
|
|
required=True,
|
|
help="The dest os-username to use to"
|
|
"gather neutron resources with.")
|
|
parser.add_argument(
|
|
"--dest-os-user-domain-id",
|
|
default=DEFAULT_DOMAIN_ID,
|
|
help="The dest os-user-domain-id to use to"
|
|
"gather neutron resources with.")
|
|
parser.add_argument(
|
|
"--dest-os-project-name",
|
|
required=True,
|
|
help="The dest os-project-name to use to "
|
|
"gather neutron resource with.")
|
|
parser.add_argument(
|
|
"--dest-os-project-domain-id",
|
|
default=DEFAULT_DOMAIN_ID,
|
|
help="The dest os-project-domain-id to use to "
|
|
"gather neutron resource with.")
|
|
parser.add_argument(
|
|
"--dest-os-password",
|
|
required=True,
|
|
help="The password for this user.")
|
|
parser.add_argument(
|
|
"--dest-os-auth-url",
|
|
required=True,
|
|
help="They keystone api endpoint for this user.")
|
|
|
|
parser.add_argument(
|
|
"--use-old-keystone",
|
|
default=False,
|
|
action='store_true',
|
|
help="Use old keystone client for source authentication.")
|
|
|
|
parser.add_argument(
|
|
"--logfile",
|
|
default=DEFAULT_LOGFILE,
|
|
help="Output logfile.")
|
|
|
|
# NOTE: this will return an error message if any of the
|
|
# require options are missing.
|
|
return parser.parse_args()
|
|
|
|
|
|
def main():
|
|
ApiReplayCli()
|