├── .gitignore ├── LICENSE ├── README.md ├── cloud-init-example.conf ├── packer.json ├── playbook.yml └── requirements.yml /.gitignore: -------------------------------------------------------------------------------- 1 | packer_cache/ 2 | roles/ 3 | *.retry 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kintoandar/bakery/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kintoandar/bakery/HEAD/README.md -------------------------------------------------------------------------------- /cloud-init-example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kintoandar/bakery/HEAD/cloud-init-example.conf -------------------------------------------------------------------------------- /packer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kintoandar/bakery/HEAD/packer.json -------------------------------------------------------------------------------- /playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kintoandar/bakery/HEAD/playbook.yml -------------------------------------------------------------------------------- /requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kintoandar/bakery/HEAD/requirements.yml --------------------------------------------------------------------------------