Compare commits

...

28 Commits

Author SHA1 Message Date
ab52152834 always recreate; deprecate version tag
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 41s
2024-10-25 16:09:21 +02:00
115ab7e840 pull docker images before restart; don't recursively edit premissions; use base_path in docker-compose.yaml
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 33s
2024-06-03 16:21:07 +02:00
Marius Meyer
14da8cd5a1 gitea data/config base_path var
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 36s
2024-06-03 14:29:14 +02:00
Marius Meyer
50e6c10349 condensed directory creation; fixed permissions
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 23s
2024-06-03 14:21:33 +02:00
Marius Meyer
c28214c517 move data to /var/lib/gitea
Some checks failed
ansible-lint / Ansible Lint (push) Failing after 25s
2024-06-03 14:02:58 +02:00
306d2eebbe disabled logging for now. too many options. switch to app.ini?
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 42s
2024-05-25 04:56:37 +02:00
Marius Meyer
b0da3ff4a7 [FIX] clean up docker_compose_v2 parameters
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 21s
2024-04-11 14:16:56 +02:00
Marius Meyer
529749ed14 quote pattern
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 22s
2024-04-11 13:41:46 +02:00
Marius Meyer
d03e1142f2 use docker_compose_v2 module
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 31s
2024-04-10 19:57:47 +02:00
Marius Meyer
fbc2a17011 macos 'date' compatibility 2024-04-10 19:41:22 +02:00
Marius Meyer
c39d29c03f remove database['charset'] env variable (gitea 1.21 breaking change)
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 43s
2024-04-10 18:30:23 +02:00
d7fe8eb263 restart: unless-stopped
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 21s
2024-01-05 18:03:53 +01:00
Marius Alwan Meyer
d2e25188cc support metrics configuration
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 31s
2023-11-13 09:06:08 +01:00
Marius Alwan Meyer
16c3c592c0 [lint] don't error on line-length, empty-lines and new-line-at-end-of-file
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 20s
2023-08-11 14:02:30 +02:00
Marius Alwan Meyer
fa915065f5 fix silly empty line errors
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 22s
2023-08-10 17:58:37 +02:00
Marius Alwan Meyer
bbc480fec2 download collections during ansible-lint
Some checks failed
ansible-lint / Ansible Lint (push) Failing after 23s
2023-08-10 17:54:51 +02:00
Marius Alwan Meyer
3da637c178 include community.general
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 28s
2023-08-10 17:51:20 +02:00
Marius Alwan Meyer
2bca413df1 explain myself 2023-08-10 17:44:32 +02:00
Marius Alwan Meyer
1e33c1d339 try the unthinkable
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 12s
2023-08-10 17:40:17 +02:00
Marius Alwan Meyer
d37cc02ecf add requirements.yaml
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 11s
2023-08-10 17:34:17 +02:00
Marius Alwan Meyer
d4b9261f24 use major release tag instead of @main
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 16s
2023-08-10 16:49:12 +02:00
Marius Alwan Meyer
e8545cd4e7 Keine Wildcard in find's Startpunkt
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 10s
2023-08-10 09:25:09 +02:00
Marius Alwan Meyer
18c18c112b Verleihe CAP_SYS_NICE an den MYSQL Container 2023-07-18 16:22:34 +02:00
Marius Alwan Meyer
9451bdb478 Formatierung
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 10s
2023-07-17 10:36:59 +02:00
Marius Alwan Meyer
b1789e15d6 delete old backups with external rm process
Some checks failed
ansible-lint / Ansible Lint (push) Failing after 16s
2023-07-17 10:06:24 +02:00
Marius Alwan Meyer
a20c7b188d Lösche Backups nach sieben Tagen 2023-07-06 11:37:56 +02:00
cf59550120 Bessere Namen für Tasks
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 10s
2023-05-01 20:38:08 +00:00
32ac3f842a Merge pull request 'Merge experimental nach main' (#3) from experimental into main
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 13s
Reviewed-on: #3
2023-05-01 16:37:47 +00:00
8 changed files with 80 additions and 47 deletions

6
.ansible-lint Normal file
View File

@ -0,0 +1,6 @@
offline: false
warn_list:
- yaml[line-length]
- yaml[empty-lines]
- yaml[new-line-at-end-of-file]

View File

@ -1,5 +1,5 @@
name: ansible-lint name: ansible-lint
on: [push, pull_request] on: [push, pull_request] # yamllint disable-line rule:truthy
jobs: jobs:
build: build:
@ -14,7 +14,7 @@ jobs:
- name: Run ansible-lint - name: Run ansible-lint
# replace `main` with any valid ref, or tags like `v6` # replace `main` with any valid ref, or tags like `v6`
uses: https://github.com/ansible/ansible-lint-action@main uses: https://github.com/ansible/ansible-lint-action@v6
# optional: # optional:
# with: # with:
# path: "playbooks/" # <-- only one value is allowed # path: "playbooks/" # <-- only one value is allowed

View File

@ -5,11 +5,10 @@
listen: listen:
- Backup Gitea - Backup Gitea
- name: Stop Gitea for Backup - name: Stop Gitea for backup
community.docker.docker_compose: community.docker.docker_compose_v2:
project_src: /opt/gitea project_src: /opt/gitea
state: present state: stopped
stopped: true
register: docker_compose register: docker_compose
listen: listen:
- Backup Gitea - Backup Gitea
@ -17,10 +16,10 @@
- Ensure Gitea is running - Ensure Gitea is running
when: docker_compose_stat.stat.exists is defined and docker_compose_stat.stat.exists when: docker_compose_stat.stat.exists is defined and docker_compose_stat.stat.exists
- name: Backup Gitea Directory - name: Backup Gitea directory
community.general.archive: community.general.archive:
path: /opt/gitea/ path: "{{ gitea_vars.base_path }}/"
dest: "/var/backups/gitea-{{ gitea.hostname }}.{{ gitea.domain }}@{{ lookup('pipe', 'date --utc --iso-8601=seconds') }}.tar.gz" dest: "/var/backups/gitea-{{ gitea.hostname }}.{{ gitea.domain }}@{{ lookup('pipe', 'date -u +%Y-%m-%dT%H:%M:%SZ') }}.tar.gz"
force_archive: true force_archive: true
format: gz format: gz
owner: root owner: root

View File

@ -1,19 +1,24 @@
- name: Import Backup Handler - name: Import backup handler
ansible.builtin.import_tasks: ansible.builtin.import_tasks:
file: backup.yaml file: backup.yaml
- name: Ensure Gitea is restarted - name: Ensure Docker images are up to date
community.docker.docker_compose: community.docker.docker_compose_v2_pull:
project_src: /opt/gitea project_src: /opt/gitea
restarted: true
- name: Ensure Gitea is restarted
community.docker.docker_compose_v2:
project_src: /opt/gitea
state: restarted
recreate: always
register: docker_compose register: docker_compose
- name: Ensure Gitea is running - name: Ensure Gitea is running
community.docker.docker_compose: community.docker.docker_compose_v2:
project_src: /opt/gitea project_src: /opt/gitea
register: docker_compose register: docker_compose
- name: Get Gitea HTTP Response - name: Get Gitea HTTP response
ansible.builtin.uri: ansible.builtin.uri:
url: "https://{{ gitea.hostname }}.{{ gitea.domain }}" url: "https://{{ gitea.hostname }}.{{ gitea.domain }}"
register: gitea_http_response register: gitea_http_response
@ -27,6 +32,6 @@
retries: 30 retries: 30
delay: 2 delay: 2
- name: Output Docker Compose State - name: Output docker compose state
ansible.builtin.debug: ansible.builtin.debug:
var: docker_compose var: docker_compose

8
requirements.yml Normal file
View File

@ -0,0 +1,8 @@
# actions/run-ansible-lint forces me to name this file .yml instead of .yaml :(
collections:
- name: community.docker
source: https://galaxy.ansible.com
- name: community.general
source: https://galaxy.ansible.com

View File

@ -5,40 +5,43 @@
# - docker.io # - docker.io
# - python3-docker # - python3-docker
- name: Create git USER - name: Ensure git user exists
ansible.builtin.user: ansible.builtin.user:
name: git name: git
register: git_user register: git_user
- name: Create Gitea - name: Ensure Gitea directories exist
ansible.builtin.file: ansible.builtin.file:
path: "/opt/gitea" path: "{{ item }}"
state: directory state: directory
owner: root owner: root
mode: "755" mode: "755"
with_items: ["/opt/gitea", "{{ gitea_vars.base_path }}"]
- name: Create Data Directory - name: Ensure data and config directories exist
ansible.builtin.file: ansible.builtin.file:
path: "/opt/gitea/data" path: "{{ gitea_vars.base_path }}/{{ item }}"
state: directory state: directory
owner: "{{ git_user.uid }}" owner: "{{ git_user.uid }}"
group: "{{ git_user.group }}" group: "{{ git_user.group }}"
mode: "700" mode: "700"
with_items: ["data", "config"]
- name: Create Config Directory - name: Ensure docker daemon is started
ansible.builtin.file:
path: "/opt/gitea/config"
state: directory
owner: "{{ git_user.uid }}"
group: "{{ git_user.group }}"
mode: "700"
- name: Start Docker Daemon
ansible.builtin.systemd: ansible.builtin.systemd:
name: docker name: docker
enabled: true enabled: true
state: started state: started
- name: Ensure old backups will get deleted
ansible.builtin.cron:
name: gitea backup cleanup
minute: "0"
hour: "8"
user: root
job: find /var/backups -path '/var/backups/gitea-*' -mtime +7 -type f -exec rm {} +
cron_file: gitea-backup-cleanup
- name: Check if environment.env will get changed - name: Check if environment.env will get changed
ansible.builtin.template: ansible.builtin.template:
src: environment.env.j2 src: environment.env.j2
@ -61,10 +64,10 @@
notify: notify:
- Backup Gitea - Backup Gitea
- name: Execute Handlers before changing configfiles - name: Execute handlers before changing configfiles
ansible.builtin.meta: flush_handlers ansible.builtin.meta: flush_handlers
- name: Upload Environment File - name: Upload environment.env
ansible.builtin.template: ansible.builtin.template:
src: environment.env.j2 src: environment.env.j2
dest: "/opt/gitea/environment.env" dest: "/opt/gitea/environment.env"
@ -81,6 +84,7 @@
owner: root owner: root
mode: "600" mode: "600"
notify: notify:
- Output Docker Compose State - Ensure Docker images are up to date
- Output docker compose state
- Ensure Gitea is restarted - Ensure Gitea is restarted
- Wait until Gitea is up - Wait until Gitea is up

View File

@ -4,8 +4,6 @@
# -- Diese Datei wird via Ansible verwaltet und automatisch überschrieben! # -- Diese Datei wird via Ansible verwaltet und automatisch überschrieben!
# https://azubi-gitea.int.sernet.de/mmeyer/ansible-role-gitea/src/branch/main/templates/docker-compose.yaml.j2 # https://azubi-gitea.int.sernet.de/mmeyer/ansible-role-gitea/src/branch/main/templates/docker-compose.yaml.j2
version: "3.8"
networks: networks:
gitea: gitea:
external: false external: false
@ -13,10 +11,10 @@ networks:
services: services:
gitea: gitea:
image: gitea/gitea:{{ gitea_vars['version'] }}-rootless image: gitea/gitea:{{ gitea_vars['version'] }}-rootless
restart: always restart: unless-stopped
volumes: volumes:
- ./data:/var/lib/gitea - {{ gitea_vars.base_path }}/data:/var/lib/gitea
- ./config:/etc/gitea - {{ gitea_vars.base_path }}/config:/etc/gitea
- /etc/timezone:/etc/timezone:ro - /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro - /etc/localtime:/etc/localtime:ro
ports: ports:
@ -31,7 +29,7 @@ services:
db: db:
image: "{{ gitea_vars['database']['db_type'] }}:{{ gitea_vars['database']['docker_image_tag'] }}" image: "{{ gitea_vars['database']['db_type'] }}:{{ gitea_vars['database']['docker_image_tag'] }}"
restart: always restart: unless-stopped
environment: environment:
- "MYSQL_DATABASE={{ gitea_vars.database.name }}" - "MYSQL_DATABASE={{ gitea_vars.database.name }}"
- "MYSQL_USER={{ gitea_vars.database.user }}" - "MYSQL_USER={{ gitea_vars.database.user }}"
@ -40,5 +38,6 @@ services:
networks: networks:
- gitea - gitea
volumes: volumes:
- ./mysql:/var/lib/mysql - {{ gitea_vars.base_path }}/mysql:/var/lib/mysql
cap_add:
- SYS_NICE

View File

@ -47,9 +47,6 @@ GITEA__database__SQLITE_JOURNAL_MODE={{ gitea_vars.database.sqlite_journal_mode
{% if 'iterate_buffer_size' in gitea_vars['database'] %} {% if 'iterate_buffer_size' in gitea_vars['database'] %}
GITEA__database__ITERATE_BUFFER_SIZE={{ gitea_vars.database.iterate_buffer_size }} GITEA__database__ITERATE_BUFFER_SIZE={{ gitea_vars.database.iterate_buffer_size }}
{% endif %} {% endif %}
{% if 'charset' in gitea_vars['database'] %}
GITEA__database__CHARSET={{ gitea_vars.database.charset }}
{% endif %}
{% if 'path' in gitea_vars['database'] %} {% if 'path' in gitea_vars['database'] %}
GITEA__database__PATH={{ gitea_vars.database.path }} GITEA__database__PATH={{ gitea_vars.database.path }}
{% endif %} {% endif %}
@ -187,7 +184,7 @@ GITEA__attachment__MINIO_BASE_PATH={{ gitea_vars.attachment.minio_base_path }}
GITEA__attachment__MINIO_USE_SSL={{ gitea_vars.attachment.minio_use_ssl }} GITEA__attachment__MINIO_USE_SSL={{ gitea_vars.attachment.minio_use_ssl }}
{% endif %} {% endif %}
{% endif %} {# /attachment #} {% endif %} {# /attachment #}
{# Disabled logging for now
{% if 'log' in gitea_vars %} {% if 'log' in gitea_vars %}
{% if 'root_path' in gitea_vars['log'] %} {% if 'root_path' in gitea_vars['log'] %}
GITEA__log__ROOT_PATH={{ gitea_vars.log.root_path }} GITEA__log__ROOT_PATH={{ gitea_vars.log.root_path }}
@ -208,7 +205,7 @@ GITEA__log__ENABLE_log_LOG={{ gitea_vars.log.enable_log_log }}
GITEA__log__ENABLE_XORM_LOG={{ gitea_vars.log.enable_xorm_log }} GITEA__log__ENABLE_XORM_LOG={{ gitea_vars.log.enable_xorm_log }}
{% endif %} {% endif %}
{% endif %} {# /logging#} {% endif %} {# /logging#}
#}
{% if 'ssh' in gitea_vars %} {% if 'ssh' in gitea_vars %}
{% if 'minimum_key_sizes' in gitea_vars['ssh'] %} {% if 'minimum_key_sizes' in gitea_vars['ssh'] %}
{% if 'ed25519' in gitea_vars['ssh']['minimum_key_sizes'] %} {% if 'ed25519' in gitea_vars['ssh']['minimum_key_sizes'] %}
@ -305,3 +302,18 @@ GITEA__actions__ENABLED={{ gitea_vars.actions.enabled }}
GITEA__actions__DEFAULT_ACTIONS_URL={{ gitea_vars.actions.default_actions_url }} GITEA__actions__DEFAULT_ACTIONS_URL={{ gitea_vars.actions.default_actions_url }}
{% endif %} {% endif %}
{% endif %} {# /actions #} {% endif %} {# /actions #}
{% if 'metrics' in gitea_vars %}
{% if 'enabled' in gitea_vars['metrics'] %}
GITEA__metrics__ENABLED={{ gitea_vars.metrics.enabled }}
{% endif %}
{% if 'enabled_issue_by_label' in gitea_vars['metrics'] %}
GITEA__metrics__ENABLED_ISSUE_BY_LABEL={{ gitea_vars.metrics.enabled_issue_by_label }}
{% endif %}
{% if 'enabled_issue_by_repository' in gitea_vars['metrics'] %}
GITEA__metrics__ENABLED_ISSUE_BY_REPOSITORY={{ gitea_vars.metrics.enabled_issue_by_repository }}
{% endif %}
{% if 'token' in gitea_vars['metrics'] %}
GITEA__metrics__TOKEN={{ gitea_vars.metrics.token }}
{% endif %}
{% endif %} {# /actions #}