├── .gitignore ├── R10k.md ├── README.md ├── Vagrant ├── Vagrantfile ├── puppet │ ├── keys │ │ ├── private_keys │ │ │ └── placeholder.txt │ │ └── public_keys │ │ │ └── placeholder.txt │ └── puppet.conf └── scripts │ └── savekeys.sh ├── classification.md ├── git-flow.md ├── images ├── OverviewGitFlow.png ├── PuppetcodeWorkflow.png ├── PuppetmoduleupdateWorkflow.png ├── R10kDeployments3.png └── environments2.png ├── scripts ├── addpuppetdev.sh ├── checkrepos ├── create_symlinks_from_list.sh └── eyaml.sh ├── webconsole.md ├── why-code-review.md └── workflows.md /.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | *.pem 3 | -------------------------------------------------------------------------------- /R10k.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerapeldoorn/MPI-course/HEAD/R10k.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerapeldoorn/MPI-course/HEAD/README.md -------------------------------------------------------------------------------- /Vagrant/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerapeldoorn/MPI-course/HEAD/Vagrant/Vagrantfile -------------------------------------------------------------------------------- /Vagrant/puppet/keys/private_keys/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Vagrant/puppet/keys/public_keys/placeholder.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Vagrant/puppet/puppet.conf: -------------------------------------------------------------------------------- 1 | [agent] 2 | server=master.puppetspecialist.nl 3 | -------------------------------------------------------------------------------- /Vagrant/scripts/savekeys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerapeldoorn/MPI-course/HEAD/Vagrant/scripts/savekeys.sh -------------------------------------------------------------------------------- /classification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerapeldoorn/MPI-course/HEAD/classification.md -------------------------------------------------------------------------------- /git-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerapeldoorn/MPI-course/HEAD/git-flow.md -------------------------------------------------------------------------------- /images/OverviewGitFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerapeldoorn/MPI-course/HEAD/images/OverviewGitFlow.png -------------------------------------------------------------------------------- /images/PuppetcodeWorkflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerapeldoorn/MPI-course/HEAD/images/PuppetcodeWorkflow.png -------------------------------------------------------------------------------- /images/PuppetmoduleupdateWorkflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerapeldoorn/MPI-course/HEAD/images/PuppetmoduleupdateWorkflow.png -------------------------------------------------------------------------------- /images/R10kDeployments3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerapeldoorn/MPI-course/HEAD/images/R10kDeployments3.png -------------------------------------------------------------------------------- /images/environments2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerapeldoorn/MPI-course/HEAD/images/environments2.png -------------------------------------------------------------------------------- /scripts/addpuppetdev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerapeldoorn/MPI-course/HEAD/scripts/addpuppetdev.sh -------------------------------------------------------------------------------- /scripts/checkrepos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerapeldoorn/MPI-course/HEAD/scripts/checkrepos -------------------------------------------------------------------------------- /scripts/create_symlinks_from_list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerapeldoorn/MPI-course/HEAD/scripts/create_symlinks_from_list.sh -------------------------------------------------------------------------------- /scripts/eyaml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerapeldoorn/MPI-course/HEAD/scripts/eyaml.sh -------------------------------------------------------------------------------- /webconsole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerapeldoorn/MPI-course/HEAD/webconsole.md -------------------------------------------------------------------------------- /why-code-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerapeldoorn/MPI-course/HEAD/why-code-review.md -------------------------------------------------------------------------------- /workflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerapeldoorn/MPI-course/HEAD/workflows.md --------------------------------------------------------------------------------