Skip to content

Commit cb5edd0

Browse files
committed
XXX: add barbican client
User can now call e.g. "barbican secret list" to test out the barbican service. Signed-off-by: Stefan Kober <stefan.kober@cyberus-technology.de> On-behalf-of: SAP stefan.kober@sap.com
1 parent 2686a7e commit cb5edd0

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

modules/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717

1818
storageModule = import ./storage/cinder-storage-node.nix { inherit (openstackPkgs) cinder; };
1919

20-
testModules = import ./testing { };
20+
testModules = import ./testing { inherit openstackPkgs; };
2121
}

modules/testing/default.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ }:
1+
{ openstackPkgs }:
22
let
33
adminEnv = {
44
OS_USERNAME = "admin";
@@ -35,6 +35,7 @@ let
3535
pkgs.openstackclient
3636
pkgs.openiscsi
3737
pkgs.sshpass
38+
openstackPkgs.python-barbicanclient
3839
];
3940

4041
environment.variables = adminEnv;

0 commit comments

Comments
 (0)