diff options
author | shangxdy <shang.xiaodong@zte.com.cn> | 2016-09-29 17:01:31 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-09-29 17:01:31 +0000 |
commit | 9d425078f44d463dbb20b1e7e74b1c3e6ce928b2 (patch) | |
tree | 498b8c6d39d6a72b287aa9654a8b77c83c941d71 /tosca2heat/heat-translator/translator/hot | |
parent | 4fcb3c5ed4446092cdcfceb88edf79b1ffaaddc6 (diff) | |
parent | 86f92e7761cb6a06d96fbeee984432ce90f8af65 (diff) |
Merge "Add ip output in compute translation"
Diffstat (limited to 'tosca2heat/heat-translator/translator/hot')
-rw-r--r-- | tosca2heat/heat-translator/translator/hot/tests/test_translate_outputs.py | 4 | ||||
-rw-r--r-- | tosca2heat/heat-translator/translator/hot/tosca/tosca_compute.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tosca2heat/heat-translator/translator/hot/tests/test_translate_outputs.py b/tosca2heat/heat-translator/translator/hot/tests/test_translate_outputs.py index c02a547..12ea355 100644 --- a/tosca2heat/heat-translator/translator/hot/tests/test_translate_outputs.py +++ b/tosca2heat/heat-translator/translator/hot/tests/test_translate_outputs.py @@ -33,12 +33,12 @@ class ToscaTemplateOutputTest(TestCase): 'server, http://<IP>:3000', 'value': {'get_attr': - ['app_server', 'networks']}}, + ['app_server', 'first_address']}}, 'mongodb_url': {'description': 'URL for the mongodb server.', 'value': {'get_attr': - ['mongo_server', 'networks']}}} + ['mongo_server', 'first_address']}}} hot_translation_dict = \ toscaparser.utils.yamlparser.simple_parse(hot_translation) diff --git a/tosca2heat/heat-translator/translator/hot/tosca/tosca_compute.py b/tosca2heat/heat-translator/translator/hot/tosca/tosca_compute.py index 8a959d1..b685d6a 100644 --- a/tosca2heat/heat-translator/translator/hot/tosca/tosca_compute.py +++ b/tosca2heat/heat-translator/translator/hot/tosca/tosca_compute.py @@ -324,7 +324,7 @@ class ToscaCompute(HotResource): attriute.')) if attribute == 'private_address' or \ attribute == 'public_address': - attr['get_attr'] = [self.name, 'networks'] + attr['get_attr'] = [self.name, 'first_address'] return attr |