Commit f5b349de authored by Cool Fire's avatar Cool Fire
Browse files

First commit of the hieradata-testing repo

parents
Loading
Loading
Loading
Loading
Loading

.gitlab-ci.yml

0 → 100644
+24 −0
Original line number Diff line number Diff line
---
stages:
  - test
  - deploy
yaml:
  stage: test
  script:
    - pip3 install yamllint
    - yamllint -v
    - yamllint -s .
  image: python:latest
deploy:
  stage: deploy
  script:
    - apt-get update -qq
    - 'which ssh-agent || (apt-get install -y -qq openssh-client)'
    - eval $(ssh-agent -s)
    - ssh-add <(echo "$SSH_PRIVATE_KEY")
    - mkdir -p ~/.ssh
    - echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
    - bash deploy.sh
  image: ubuntu:16.04
  only:
    - master

README.md

0 → 100644
+2 −0
Original line number Diff line number Diff line
All configuration variables and overrides for puppet live here.
This is the testing version of the repo that can be used for development.

common.yaml

0 → 100644
+2 −0
Original line number Diff line number Diff line
---
place: holder

domain/.gitkeep

0 → 100644
+0 −0

Empty file added.

+7 −0
Original line number Diff line number Diff line
---
profile::base::packages:
  - curl
  - vim
profile::base::snmpclient::rocommunity: 'SECRET_STUFF'
snmp::snmpd_options: "-LS0-5d -Lf /dev/null -u Debian-snmp -g Debian-snmp \
  -I -smux -p /var/run/snmpd.pid"