Skip to content

Commit 1995b2c

Browse files
committed
nix: use controllerHostEntry module
in both compute and controller. This way, a user of any of this modules has to set an IP for the controller. Otherwise, the services cannot function properly.
1 parent d93859f commit 1995b2c

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

modules/compute/compute.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
{ ... }:
33
{
44
imports = [
5+
../generic/controllerHostEntry.nix
56
(import ./neutron.nix { inherit neutron; })
67
(import ./nova.nix { inherit nova; })
78
];

modules/controller/openstack-controller.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ in
2525
{
2626
imports = [
2727
./generic.nix
28+
../generic/controllerHostEntry.nix
2829
(import ./keystone.nix { inherit keystone; })
2930
(import ./glance.nix { inherit glance; })
3031
(import ./placement.nix { inherit placement; })

0 commit comments

Comments
 (0)