A control repository template
Go to file
2015-08-18 16:11:25 -07:00
hieradata Move some hieradata around for easier testing in vagrant 2015-08-18 14:01:20 -07:00
manifests Fix some quoting issues and add role:: to the include in site.pp 2015-08-13 15:41:11 -07:00
scripts Add execute bit to config_version scripts 2015-08-13 14:47:08 -07:00
site Update the repo name for deploy keys and webhook to match README 2015-08-18 16:11:25 -07:00
environment.conf Update config_version to use a script that does not require git 2015-08-03 17:05:06 -07:00
Puppetfile Update version of abrader-gms 2015-08-18 14:22:23 -07:00
README.md Update README 2015-08-18 16:09:53 -07:00

Before Starting:

This control repo and the steps below are intended to be used during a new installation of PE.

If you intend to use it on an existing installation of PE then you'll have to figure out some of the steps on your own and be warned that if you've already written or downloaded modules when you start using r10k it will remove all of the existing modules and replace them with what you define in your Puppetfile. Please copy or move your existing modules to another directory to ensure you do not lose any work you've already started.

How to Copy This Repo Into Your Own Git Server

  1. Make an user in your internal git server

  2. Make an ssh key to link with your user. Youll want to do this on the machine you intend to edit code from ( most likely not your puppet master but your local workstation / laptop )

  1. Create a repository in your git server called control-repo

  2. Setup your control repository by copying this one

  1. Remove the .git directory from the cloned repo.
  • cd control-repo
  • rm -rf .git
  1. git init

  2. Find the url to your internal repo this is usually on the front page of the repo

  • Add the repo as a remote
  • git remote add origin git@gitlab-server:root/control-repo.git
  1. Push the repository from your machine up to your git server
  • git push origin production

Setting Up Your Git Management System

Setting Up Gitlab

  1. Install Gitlab on a server by specifying laying down the following trusted fact the soon-to-be Gitlab server and then install the PE agent.
---
extension_requests:
   #pp_role
   1.3.6.1.4.1.34380.1.1.13: 'gitlab'
  1. After the install of the agent completes and an agent run completes Gitlab will be installed.

  2. After Gitlab is installed you may sign if with the root user and password 5iveL!fe

  3. Create a group called puppet ( this is case sensitive )

  1. Create a user called r10k_api_user and add them to the puppet group

  2. Create a project called control-repo and set the Namespace to be the puppet group

  • If you have direct internet access from your Gitlab server you can also use the "Import project from" option to import this repo
  • If you do not have direct internet access then wait a little bit and we'll get to that later
  1. Logout of root and login as the r10k_api_user
  • Go to profile settings -> account ( https://<your_gitlab_server>/profile/account )
  • Copy the api token
  1. mv hieradata/nodes/example-puppet-master.yaml hieradata/nodes/<fqdn_of_your_puppet_master>.yaml
  • Open hieradata/nodes/<fqdn_of_your_puppet_master>.yaml
    • edit gms_api_token to be your api token
    • edit git_management_system to be 'gitlab'
    • You should not need to edit the gms_server_url

Setting up Github

You

Lay Down a Trusted Fact Before Installing PE

This control repository is setup to manage certain portions of your PE installation for you if you lay down a trusted fact called pp_role before installing. In order to immeadiately gain from these benefits you will need to lay down a file that looks exactly like the below in /etc/puppetlabs/puppet/csr_attributes.yaml

---
extension_requests:
  #pp_role
  1.3.6.1.4.1.34380.1.1.13: 'all_in_one_pe'

Install a New PE 2015.2+ Instance or Update an Existing PE Instance To Use the Control Repository

Install PE Specifying Answers To Point To Your Control Repository

https://docs.puppetlabs.com/pe/latest/r10k_config_answers.html

#TODO Flush out generating an answer file and then appending these answers onto the end of it.

Update Existing PE 2015.2+ Install To Point To The Control Repository

https://docs.puppetlabs.com/pe/latest/r10k_config_console.html

Run r10k

  1. Run r10k deploy environment —verbose and watch it install the modules from your Puppetfile