2023-10-10 20:08:12 +02:00
[![collection l3d.git ](https://ansible.l3d.space/svg/l3d.git_ansible-collection_collection.svg )](https://galaxy.ansible.com/ui/repo/published/l3d/git/)
2023-04-15 23:52:33 +02:00
[![Maintainance ](https://ansible.l3d.space/svg/l3d.git_maintainance_collection.svg )](https://ansible.l3d.space/#l3d.git)
[![License ](https://ansible.l3d.space/svg/l3d.git_license_collection.svg )](LICENSE)
2023-03-30 00:01:15 +02:00
Ansible Collection - l3d.git
============================
2023-04-15 23:52:33 +02:00
This is the Ansible Collection ``l3d.git``.
2023-03-30 00:01:15 +02:00
Here are all our ansible roles for installing git server.
2023-04-15 23:52:33 +02:00
## Ansible Roles in l3d.git
- [![l3d.git.gitea ](https://ansible.l3d.space/svg/l3d.git.gitea_ansible-role.svg )](https://github.com/roles-ansible/ansible_role_gitea.git) - Ansible role to install gitea or forgejo git server
2024-03-26 18:47:52 +01:00
- [![l3d.git.forgejo_runner ](https://ansible.l3d.space/svg/l3d.git.forgejo_runner_ansible-role.svg )](https://github.com/roles-ansible/ansible_role_forgeo_runner.git) - Ansible role to install forgejo runner
2023-03-30 00:01:15 +02:00
## Using this Collection
You can install the collection using ansible-galaxy by running:
```bash
2024-07-23 16:01:31 +02:00
ansible-galaxy collection install l3d.git:1.1.5
2023-03-30 00:01:15 +02:00
```
2023-05-15 16:18:32 +02:00
Remember you can to Upgrade to the latest version of the l3d.git collection using the ``--upgrade`` parameter:
```bash
ansible-galaxy collection install l3d.git --upgrade
```
2023-04-15 23:52:33 +02:00
Or you could clone this collection in your local ansible project for example to ``collections/ansible_collections/l3d/git/``. Make sure you checkout [git submodules ](https://git-scm.com/docs/git-submodule ) too. Example:
```
# Clone git Repo with submodules to specified path
git clone --recursive https://github.com/roles-ansible/ansible_collection_git.git collections/ansible_collections/l3d/git/
# change directory
cd collections/ansible_collections/l3d/git/
# optionally init git submodules
git submodule update --init --recursive
2023-04-16 00:30:25 +02:00
# optionally install all requirements
2023-11-28 01:28:24 +01:00
ansible-galaxy collection install -r requirements.yml --upgrade
2023-04-15 23:52:33 +02:00
```
2023-03-30 00:01:15 +02:00
You can also list a collection in ``requirements.yml``:
```yaml
---
collections:
- name: l3d.git
2024-07-23 16:01:31 +02:00
version: ">=1.1.5"
2023-03-30 00:01:15 +02:00
```
## Include roles in your playbook
Example Playbook using the l3d.git.gitea role:
```yaml
---
- name: "Install forgejo git server from collection l3d.git"
hosts: git.example.com
roles:
- {role: l3d.git.gitea, tags: forgejo}
vars:
# Here we assume we are behind a reverse proxy that will
# handle https for us, so we bind on localhost:3000 using HTTP
# see https://docs.gitea.io/en-us/reverse-proxies/#nginx
gitea_fqdn: 'git.example.com'
gitea_root_url: 'https://git.example.com'
gitea_protocol: http
gitea_start_ssh: true
gitea_fork: 'forgejo'
```
2023-05-15 16:18:32 +02:00
## Requirements
The roles in this collection using the ``ansible.builtin`` and ``community.general`` ansible Collections. To download the latest forgejo/gitea release we use json_query. This requires ``jmespath`` to be available.
### Example Requirements Installation:
```bash
# galaxy requirements
2023-11-28 01:28:24 +01:00
ansible-galaxy collection install -r requirements.yml --upgrade
2023-05-15 16:18:32 +02:00
# pip requirements
pip install -r requirements.txt
```