Get configured nova key file path relative to tobiko.conf file

Change-Id: I5f9af93ec7e0ee8702b4ce296aff9a83b005c995
This commit is contained in:
Federico Ressi 2020-03-12 08:29:49 +01:00
parent 3fef57a712
commit faa9ee4065
1 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ CONF = config.CONF
class KeyPairStackFixture(heat.HeatStackFixture):
template = _hot.heat_template_file('nova/key_pair.yaml')
key_file = os.path.expanduser(CONF.tobiko.nova.key_file)
key_file = tobiko.tobiko_config_path(CONF.tobiko.nova.key_file)
public_key = None
private_key = None
@ -52,7 +52,7 @@ class KeyPairStackFixture(heat.HeatStackFixture):
self.public_key = as_str(fd.read())
def create_key_file(self):
key_file = os.path.realpath(self.key_file)
key_file = self.key_file
if not os.path.isfile(key_file):
key_dir = os.path.dirname(key_file)
tobiko.makedirs(key_dir)