https://github.com/cdrage/ansible-playbooks
🚀 My Ansible Playbooks
https://github.com/cdrage/ansible-playbooks
ansible ansible-playbooks docker kubernetes
Last synced: 2 months ago
JSON representation
🚀 My Ansible Playbooks
- Host: GitHub
- URL: https://github.com/cdrage/ansible-playbooks
- Owner: cdrage
- Created: 2018-01-01T19:21:02.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-11-22T01:58:16.000Z (over 2 years ago)
- Last Synced: 2025-07-11T17:58:38.345Z (12 months ago)
- Topics: ansible, ansible-playbooks, docker, kubernetes
- Language: Jinja
- Homepage:
- Size: 46.9 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Playbooks
```
_ _ _ _
/ \ _ __ ___(_) |__ | | ___
/ _ \ | '_ \/ __| | '_ \| |/ _ \
/ ___ \| | | \__ \ | |_) | | __/
/_/ \_\_| |_|___/_|_.__/|_|\___|
```
These are my ansible playbooks :). Here be dragons. Some are copied / forked from other locations
## Notes
All can be provisioned by simply adding your host to:
```sh
vim hosts
[all]
host1
```
### ssh-provision
**OS:** Any
Creates a user / provisions a group of servers and copies over your local SSH public key.
```sh
cd ssh-provision
cp hosts.sample hosts
ansible-playbook site.yaml --ask-become-pass -k -i hosts --extra-vars="create_user=USERYOUWANTTOCREATE"
```