Add SSH private key to nodepool_launcher.pp

We need to ability to SSH into the nodes we launch.

Change-Id: I148af66c52d515c030c3618b7d276febe97e5b57
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2017-02-20 13:41:09 -05:00
parent 98e18bfc83
commit 1dcd4c950b
1 changed files with 2 additions and 1 deletions

View File

@ -17,6 +17,7 @@
#
class openstackci::nodepool_launcher (
$oscc_file_contents,
$nodepool_ssh_private_key = undef,
$mysql_root_password = '',
$mysql_password = '',
$nodepool_ssh_public_key = undef,
@ -41,7 +42,7 @@ class openstackci::nodepool_launcher (
git_source_repo => $git_source_repo,
revision => $revision,
statsd_host => $statsd_host,
nodepool_ssh_private_key => '',
nodepool_ssh_private_key => $nodepool_ssh_private_key,
scripts_dir => $::project_config::nodepool_scripts_dir,
require => $::project_config::config_dir,
install_mysql => false,