- Overview
- How To Set It All Up
- Connecting Code Manager / r10k to Your Git Server
- Relation to the puppetlabs/control-repo
Created by gh-md-toc
This module allow for easy setup and configuration of PE code manager in PE2015.3 and above. If you are using PE 2015.2 then the module will default to installing the zack/r10k webhook.
Upon upgrading to 2015.3 the module will uninstall zack/r10k and attempt to use code manager but this requires that you've set the correct parameters in the puppet_enterprise module for it to work.
This module was originally a very prescriptive profile in the puppetlabs/control-repo but is now here as its own module to make it more widely available. As a result, you may find that some items are not configurable but we're working on that.
In order to use code manager ( and thus this module ) you must set the following parameter to true via hiera or the PE console UI.
puppet_enterprise::profile::master::code_manager_auto_configure: true
If you are using Gitlab as your git UI then you will also need to set the following hiera key to disable authentication to the code manager webhook. This is because gitlab currently does not allow for webhook urls that are longer than 255 characters while the RBAC token you need to place in the URL is, on its own, longer than 255 characters.
If you are using an older version of gitlab ( before version 8 ) then you will not have the ability to disable ssl verification either and would need to disable the webhook authentication on code manager.
puppet_enterprise::master::code_manager::authenticate_webhook: false
Code Manager or r10k ( which Code Manager is based on ) require ssh authentication to your git repo. The basic steps are:
- Create a ssh key
- Make said ssh key a deploy key on your control-repo
- Configure r10k / Code Manager to use this ssh key
/usr/bin/ssh-keygen -t rsa -b 2048 -C 'code_manager' -f /etc/puppetlabs/puppetserver/code_manager.key -q -N ''
- Create a deploy key on the control-repo project in your git server
- Paste in the public key from above
cat /etc/puppetlabs/puppetserver/code_manager.key.pub
- Login to the PE console
- Navigate to the Classification page
- Click on the PE Master group
- Click the Classes tab
- Add the puppet_enterprise::profile::master
- Set the r10k_remote to the ssh url of your git repo
- Set the r10k_private_key parameter to /etc/puppetlabs/puppetserver/code_manager.key
- Commit your changes
- Add the puppet_enterprise::profile::master
In order to enable code manager using this module you need to complete a very specific set of steps in the right order.
- Make sure the code from this module is on your master
- You could either use a
puppet module install
or maybe anr10k deploy environmnt -pv
- Enable code manager
- Set the parameter and run
puppet agent -t
- In order to allow file sync ( a companion to code manager) to deploy code it needs a clean $codedir ( meaning nothing in it )
- This problem is solved in the puppet code via an exec statement that only runs if you set the following custom fact
echo 'code_manager_mv_old_code=true' > /opt/puppetlabs/facter/facts.d/code_manager_mv_old_code.txt
- Finally run
puppet agent -t
2-3 times to make sure all of the configuration completes
This module was created as a part of the puppetlabs/control-repo and for the time being the documentation in that control-repo may also serve as a useful supplement to this module.
In fact if you are a new user of PE then you may consider using the puppetabs/control repo instead of trying to implement this module on its own.