Fix bug 557 about ssh keys 00/6800/2
authorgarciadeblas <gerardo.garciadeblas@telefonica.com>
Mon, 29 Oct 2018 12:50:45 +0000 (13:50 +0100)
committergarciadeblas <gerardo.garciadeblas@telefonica.com>
Mon, 29 Oct 2018 13:22:10 +0000 (14:22 +0100)
Change-Id: Id2ac54b0ba9eb7b1566e05f50b1f0e021866d826
Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
osmclient/sol005/ns.py

index 90bf8db..58be4e4 100644 (file)
@@ -124,16 +124,10 @@ class Ns(object):
         #ns['userdata']['key2']='value2'
 
         if ssh_keys is not None:
-            # ssh_keys is comma separate list
-            # ssh_keys_format = []
-            # for key in ssh_keys.split(','):
-            #     ssh_keys_format.append({'key-pair-ref': key})
-            #
-            # ns['ssh-authorized-key'] = ssh_keys_format
-            ns['ssh-authorized-key'] = []
+            ns['ssh_keys'] = []
             for pubkeyfile in ssh_keys.split(','):
                 with open(pubkeyfile, 'r') as f:
-                    ns['ssh-authorized-key'].append(f.read())
+                    ns['ssh_keys'].append(f.read())
         if config:
             ns_config = yaml.load(config)
             if "vim-network-name" in ns_config: