Gitea Ansible playbook
Deploy Gitea, your light weight git server on Debian System with ansible playbook
Getting Started
Inventory
- Copy sample invetory file
example.inventory.ini
toinventory.ini
using
cp example.inventory.ini inventory.ini
- Change
ansible_host
value with host IP - Add ssh username to
ansible_user
Variables
Copy sample variable file located in vars directory
example.vars.yml
to vars.yml
using cp example.vars.yml vars.yml
Ansible Installation
Install ansible with the following
Install python3 & pip3
sudo apt install python3 python3-pip -y`
Install ansible
python3 -m pip install ansible
install required modules
ansible-galaxy collection install -r requirements.yml
Deployment
Run the playbook with
ansible-playbook main.yml
Append -K
if ansible users needs sudo password to elevate sudo privileges
Configuration
After succesful Deployment visit IP:3000
and fill out the details
Database Settings
We are using SQLite for Database. If you are planning on running gitea with multiple teams and members it is recomended to use MySql.
- Database Type: SQLite3
- Path: Use an absolute path,
/var/lib/gitea/data/gitea.db
- Application General Settings:
- Site Title: Enter your organization name.
- Repository Root Path: Leave the default
var/lib/gitea/data/gitea-repositories
. - Git LFS Root Path: Leave the default
/var/lib/gitea/data/lfs
. - Run As Username:
git
- SSH Server Domain: Enter your domain or server IP address.
- SSH Port:
22
, change it if SSH is listening on other Port - Gitea HTTP Listen Port:
3000
- Gitea Base URL: Use http and your domain or server IP address e.g.
http://127.0.0.1
- Log Path: Leave the default
/var/lib/gitea/log
Admin Account
Expand Optional settings and add details for admin account.
To complete the installation click on install and it’ll redirect to the login page.
Post Deployment
/etc/gitea
is temporary set with write rights for user git
.
After installation is done, it is recommended to set rights to read-only using:
ansible-playbook post_install.yml
Append -K
if ansible users needs sudo password to elevate sudo privileges
Service management
- Start gitea Service
sudo systemctl start gitea
- Stop gitea service
sudo systemctl stop gitea