Align the name of the machine_spec keys as defined in the pydoc
Change-Id: I3e9c3609ea81b53b77cefcda63bbb4a8b0c6510c
Signed-off-by: Adam Israel <adam.israel@canonical.com>
if all(k in machine_spec for k in ['host', 'user']):
# Enlist an existing machine as a Juju unit
machine = await model.add_machine(spec='ssh:{}@{}:{}'.format(
- machine_spec['user'],
- machine_spec['host'],
+ machine_spec['username'],
+ machine_spec['hostname'],
self.GetPrivateKeyPath(),
))
to = machine.id
)
machine_spec = {
- 'host': hostname,
- 'user': 'ubuntu',
+ 'hostname': hostname,
+ 'username': 'ubuntu',
}
await self.n2vc.DeployCharms(