light editing, mostly for style

This commit is contained in:
jbondpdx 2016-05-11 15:30:53 -07:00
parent 3f94dafcd9
commit cd17888a90

View File

@ -4,7 +4,7 @@ Table of Contents
* [Where Did All The Previous Code Go?](#where-did-all-the-previous-code-go) * [Where Did All The Previous Code Go?](#where-did-all-the-previous-code-go)
* [What You Get From This control\-repo](#what-you-get-from-this-control-repo) * [What You Get From This control\-repo](#what-you-get-from-this-control-repo)
* [Copy This Repo Into Your Own Git Server](#copy-this-repo-into-your-own-git-server) * [Copy This Repo Into Your Own Git Server](#copy-this-repo-into-your-own-git-server)
* [Gitlab](#gitlab) * [GitLab](#gitlab)
* [Stash](#stash) * [Stash](#stash)
* [Github](#github) * [Github](#github)
@ -12,74 +12,63 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc.go)
# Where Did All The Previous Code Go? # Where Did All The Previous Code Go?
Initially, the control-repo project began as a 'starter' template for anyone Initially, the control-repo project began as a 'starter' template for anyone who wanted to get started with r10k. As time passed, and Code Manager was integrated into Puppet Enterprise, the scope of this project grew to include opinionated Puppet profiles to set up many Puppet Enterprise components. As the code increased, so did the complexity of the control-repo project. To reduce that complexity, as well as continuing to meet the needs of individuals who would like a more minimal template, this repository was stripped of anything other than the bare minimum files necessary to get started with a functioning
who wanted to get started with R10k. As time passed (and Code Manager was control-repo.
integrated into Puppet Enterprise), the scope of this project grew to include
opinionated Puppet profiles to setup many Puppet Enterprise components. As the All of the code that was previously in this repository still exists in separate repositories under the [Puppet Labs RampUp Program namespace within Github](https://github.com/PuppetLabs-RampUpProgram) and can be re-connected to an existing control-repo if that is required by adding the modules to the Puppetfile. Alternatively, if that previously-opinoinated control-repo is desired, [it still exists on Github under the Puppet Labs RampUp Program namespace.](https://github.com/PuppetLabs-RampUpProgram/control-repo) This control-repo project will remain a template for anyone who would like a minimal 'starter' template.
code increased, so did the complexity of the control-repo project. To reduce
that complexity, as well as continue to meet the needs of individuals who would
like a more minimal template, this repository was stripped of anything other
than the bare minimum files necessary to get started with a functioning
control-repo. All of the code that was previously in this repository still
exists in separate repositories under the [Puppet Labs RampUp Program namespace within Github](https://github.com/PuppetLabs-RampUpProgram)
and can easily be re-connected to an existing control-repo if that is required
(simply add the modules to the Puppetfile). Alternatively, if that
previously-opinoinated control-repo is desired, [it still exists on Github under the Puppet Labs RampUp Program namespace.](https://github.com/PuppetLabs-RampUpProgram/control-repo)
This control-repo project will remain a template for anyone who would like a minimal
'starter' template.
# What You Get From This control-repo # What You Get From This control-repo
This repository exists as a template control-repo that can be used with R10k or Puppet Enterprise Code Manager. This repository is a template control-repo that can be used with r10k or Puppet Enterprise Code Manager.
The major points are: The major points are:
- An environment.conf that correctly implements: - An environment.conf that correctly implements:
- A site directory for roles, profiles, and any custom modules for your organization - A site directory for roles, profiles, and any custom modules for your organization.
- A config_version script - A config_version script.
- Provided config_version scripts to output the commit of code that your agent just applied - Provided config_version scripts to output the commit of code that your agent just applied.
- Basic example of roles/profiles code - Basic example of roles/profiles code.
- Example hieradata directory with pre-created common.yaml and nodes directory - Example hieradata directory with pre-created common.yaml and nodes directory.
- These match the default hierarchy that ships with PE - These match the default hierarchy that ships with PE.
##Copy This Repo Into Your Own Git Server ## Copy This Repo Into Your Own Git Server
###Gitlab ### GitLab
1. Install Gitlab 1. Install GitLab.
- https://about.gitlab.com/downloads/ - https://about.gitlab.com/downloads/
2. After Gitlab is installed you may sign if with the `root` user and password `5iveL!fe` 2. After GitLab is installed you may sign if with the `root` user and password `5iveL!fe`.
3. Make a user for yourself 3. Make a user for yourself.
4. 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 ) 4. 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 or laptop).
- http://doc.gitlab.com/ce/ssh/README.html - http://doc.gitlab.com/ce/ssh/README.html
- https://help.github.com/articles/generating-ssh-keys/ - https://help.github.com/articles/generating-ssh-keys/
5. Create a group called `puppet` ( this is case sensitive ) 5. Create a group called `puppet` (this is case sensitive).
- http://doc.gitlab.com/ce/workflow/groups.html - http://doc.gitlab.com/ce/workflow/groups.html
6. Add your user to the `puppet` group as well 6. Add your user to the `puppet` group as well.
7. Create a project called `control-repo` and set the Namespace to be the `puppet` group 7. Create a project called `control-repo`, and set the Namespace to be the `puppet` group.
8. Clone this control repository to your laptop/workstation 8. Clone this control repository to your laptop/workstation:
- `git clone <repository url>` - `git clone <repository url>`
- `cd control-repo` - `cd control-repo`
9. Remove this repository as the origin remote 9. Remove this repository as the origin remote:
- `git remote remove origin` - `git remote remove origin`
10. Add your internal repository as the origin remote 10. Add your internal repository as the origin remote:
- `git remote add origin <url of your gitlab repository>` - `git remote add origin <url of your gitlab repository>`
11. Push the production branch of the repository from your machine up to your git server 11. Push the production branch of the repository from your machine up to your git server
- `git push origin production` - `git push origin production`
###Stash ### Stash
Coming soon! Coming soon!
###Github ### Github
Coming soon! Coming soon!