diff options
author | Fatih Degirmenci <fatih.degirmenci@ericsson.com> | 2016-10-13 08:37:14 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2016-10-13 08:37:14 +0000 |
commit | f2431296084401844d04a67a1b9cc14613618d89 (patch) | |
tree | 348756bc6fd43fc2d12fe0373b750f2a37aca984 /utils/installer-adapter/ApexAdapter.py | |
parent | 63955af4b3606d5cfc0008faf0feb7de6c9c5c10 (diff) | |
parent | 19a3c7408d250171a838fd98bd923e77c65c93b0 (diff) |
Merge "Installer adapters"
Diffstat (limited to 'utils/installer-adapter/ApexAdapter.py')
-rw-r--r-- | utils/installer-adapter/ApexAdapter.py | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/utils/installer-adapter/ApexAdapter.py b/utils/installer-adapter/ApexAdapter.py new file mode 100644 index 000000000..bf451f3d2 --- /dev/null +++ b/utils/installer-adapter/ApexAdapter.py @@ -0,0 +1,35 @@ +############################################################################## +# Copyright (c) 2016 Ericsson AB and others. +# Author: Jose Lausuch (jose.lausuch@ericsson.com) +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + + +from SSHUtils import SSH_Connection + + +class ApexAdapter: + + def __init__(self, installer_ip): + self.installer_ip = installer_ip + + def get_deployment_info(self): + pass + + def get_nodes(self): + pass + + def get_controller_ips(self): + pass + + def get_compute_ips(self): + pass + + def get_file_from_installer(self, origin, target, options=None): + pass + + def get_file_from_controller(self, origin, target, ip=None, options=None): + pass
\ No newline at end of file |