An open API service indexing awesome lists of open source software.

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

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
```