diff options
author | Szilard Cserey <szilard.cserey@ericsson.com> | 2015-09-14 17:54:32 +0200 |
---|---|---|
committer | Szilard Cserey <szilard.cserey@ericsson.com> | 2015-09-17 16:52:17 +0200 |
commit | 67bcb6b3596fe99a7ec59aa66593c218c6241355 (patch) | |
tree | 8c1839451706edcf57acd20bfe0ecd522b2e7715 /fuel/deploy/dea.py | |
parent | e50bd70324f20949098c082b560536047b435027 (diff) |
Updates for Autodeployer
-Remove pre-deploy mechanism
-Update reaping mechanism
-Remove old DEA, DHA configuration files
Change-Id: Ibc28d148bc23992e940e0247873a226d92fb7af7
Signed-off-by: Szilard Cserey <szilard.cserey@ericsson.com>
Diffstat (limited to 'fuel/deploy/dea.py')
-rw-r--r-- | fuel/deploy/dea.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/fuel/deploy/dea.py b/fuel/deploy/dea.py index 9c1ebfc..5f1a415 100644 --- a/fuel/deploy/dea.py +++ b/fuel/deploy/dea.py @@ -97,11 +97,3 @@ class DeploymentEnvironmentAdapter(object): settings = self.get_property('settings') ntp_list = settings['editable']['external_ntp']['ntp_list']['value'] return [n.strip() for n in ntp_list.split(',')] - - def get_hosts(self): - opnfv = self.get_property('opnfv') - hosts_list = [] - for host in opnfv['hosts']: - if host['address'] and host['fqdn']: - hosts_list.append(host) - return hosts_list |