Skip to content

Commit

Permalink
Merge pull request #1 from ESRF/github/allow-multiple-networks
Browse files Browse the repository at this point in the history
Allow multiple provider networks
  • Loading branch information
stuartcaunt committed Sep 14, 2022
2 parents c7b167e + d0ff37b commit af2d361
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/services/openstack/openstack.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -270,11 +270,11 @@ export class OpenstackService implements CloudProvider {
name: group
}
}),
networks: [
networks: this._network.addressProviderUUID.split(',').map((uuid) => (
{
uuid: this._network.addressProviderUUID
uuid: uuid
}
],
)),
metadata,
user_data: Buffer.from(bootCommand).toString('base64')
}
Expand Down

0 comments on commit af2d361

Please sign in to comment.