commit 86a392201c97958745a75b63a96e83ef9d9964f4 Author: Ben Vincent Date: Mon Jun 26 19:35:49 2023 +1000 Initial commit diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..94a84ff --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,10 @@ +repos: + - repo: 'https://github.com/adrienverge/yamllint' + rev: v1.32.0 + hooks: + - id: 'yamllint' + args: + [ + "-d {extends: relaxed, rules: {line-length: disable}, ignore: chart}", + "-s", + ] diff --git a/r10k.yaml b/r10k.yaml new file mode 100644 index 0000000..4b66ce2 --- /dev/null +++ b/r10k.yaml @@ -0,0 +1,10 @@ +# The location to use for storing cached Git repos +:cachedir: '/opt/puppetlabs/cache/r10k' + +# A list of git repositories to create +:sources: + # This will clone the git repository and instantiate an environment per + # branch in /etc/puppetlabs/code/environments + :unkin: + remote: 'git@github.com:neoloc/puppet-prod' + basedir: '/etc/puppetlabs/code/environments'