Andrew Bogott has submitted this change and it was merged. Change subject: Passwords/keys for Nodepool ......................................................................
Passwords/keys for Nodepool Nodepool needs a few credentials to interact with the OpenStack API, Jenkins and SSH into instances. Add dummy entries under passwords::nodepool. operations/puppet.git : https://gerrit.wikimedia.org/r/#/c/201728/ Bug: T89143 Change-Id: Icb2f9b9fe7dbef60f293870e223edfa849cf0951 --- A modules/nodepool/files/dib_jenkins_id_rsa M modules/passwords/manifests/init.pp 2 files changed, 8 insertions(+), 0 deletions(-) Approvals: Andrew Bogott: Verified; Looks good to me, approved diff --git a/modules/nodepool/files/dib_jenkins_id_rsa b/modules/nodepool/files/dib_jenkins_id_rsa new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/modules/nodepool/files/dib_jenkins_id_rsa diff --git a/modules/passwords/manifests/init.pp b/modules/passwords/manifests/init.pp index ac845a0..f9c308d 100644 --- a/modules/passwords/manifests/init.pp +++ b/modules/passwords/manifests/init.pp @@ -183,6 +183,14 @@ $jobbuilder_user_apikey = 'd1ae36235638ce19b2aef73a8cb510a7' } +class passwords::nodepool { + # Jenkins API token. Used by Nodepool to attach/detach slaves. + $jenkins_api_key = 'fakekey' + + # Password of the user that has access to the OpenStack API + $manager_pass = 'fakepass' +} + class passwords::mongodb::eventlogging { $user = 'eventloggingusername' $password = 'fakepassword' -- To view, visit https://gerrit.wikimedia.org/r/223536 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: Icb2f9b9fe7dbef60f293870e223edfa849cf0951 Gerrit-PatchSet: 5 Gerrit-Project: labs/private Gerrit-Branch: master Gerrit-Owner: Hashar <[email protected]> Gerrit-Reviewer: Andrew Bogott <[email protected]> Gerrit-Reviewer: Hashar <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
