https://github.com/shvamabps/system-setup-ansible
It contains basic starter setup automated using ansible
https://github.com/shvamabps/system-setup-ansible
ansible ansible-playbook docker docker-compose kubectl kubernetes minikube node python3 rust-lang
Last synced: 3 months ago
JSON representation
It contains basic starter setup automated using ansible
- Host: GitHub
- URL: https://github.com/shvamabps/system-setup-ansible
- Owner: shvamabps
- Created: 2024-08-07T20:37:25.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-12T04:47:52.000Z (almost 2 years ago)
- Last Synced: 2025-01-14T00:44:54.145Z (over 1 year ago)
- Topics: ansible, ansible-playbook, docker, docker-compose, kubectl, kubernetes, minikube, node, python3, rust-lang
- Language: Shell
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Requirements in Ubuntu
1. Python3-pip
2. Ansible
# Installation
1. Python3-pip:
```bash
sudo apt-get install python3-pip -y
```
2. Ansible
```bash
python3 -m pip install ansible
```
# Update `hosts.ini` file
1. Fill out the details in the `hosts.ini` file based on the below code snippet
```ini
[ubuntu_servers] # group name
ansible_user= ansible_become=true ansible_ssh_pass= ansible_become_password=
```
# Execution
1. Change the permission of `setup.sh` file
```bash
chmod +x ./setup.sh
```
2. Execute the file
```bash
./setup.sh
```