mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 23:08:06 +02:00
- Removed obsolete 'cmp' category, introduced 'stk' category (fa-bars-staggered icon). - Renamed roles: * cmp-db-docker → sys-stk-back-stateful * cmp-docker-oauth2 → sys-stk-back-stateless * srv-domain-provision → sys-stk-front * cmp-db-docker-proxy → sys-stk-full-stateful * cmp-docker-proxy → sys-stk-full-stateless * cmp-rdbms → sys-svc-rdbms - Updated all include_role references, vars, templates and README.md files. - Adjusted run_once comments and variable paths accordingly. - Updated all web-app roles to use new sys-stk/* and sys-svc/* roles. Conversation: https://chatgpt.com/share/68b0ba66-09f8-800f-86fc-76c47009d431
69 lines
2.2 KiB
YAML
69 lines
2.2 KiB
YAML
---
|
|
- name: "load docker, db and proxy for {{ application_id }}"
|
|
include_role:
|
|
name: sys-stk-full-stateful
|
|
|
|
- name: Wait for Gitea HTTP endpoint
|
|
wait_for:
|
|
host: "127.0.0.1"
|
|
port: "{{ ports.localhost.http[application_id] }}"
|
|
delay: 5
|
|
timeout: 300
|
|
|
|
- name: Patch Gitea database settings in app.ini
|
|
include_tasks: 01_database.yml
|
|
|
|
- name: "Run DB migrations inside Gitea container"
|
|
shell: |
|
|
docker exec -i --user {{ GITEA_USER }} {{ GITEA_CONTAINER }} \
|
|
/app/gitea/gitea migrate
|
|
args:
|
|
chdir: "{{ docker_compose.directories.instance }}"
|
|
register: migrate
|
|
changed_when: "'migrations completed' in migrate.stdout"
|
|
|
|
- name: "Create initial admin user"
|
|
shell: |
|
|
docker exec -i --user {{ GITEA_USER }} {{ GITEA_CONTAINER }} \
|
|
/app/gitea/gitea admin user create \
|
|
--admin \
|
|
--username "{{ users.administrator.username }}" \
|
|
--password "{{ users.administrator.password }}" \
|
|
--email "{{ users.administrator.email }}" \
|
|
-c {{ GITEA_CONFIG }}
|
|
args:
|
|
chdir: "{{ docker_compose.directories.instance }}"
|
|
register: create_admin
|
|
changed_when: "'has been successfully created' in create_admin.stdout"
|
|
failed_when: create_admin.rc != 0 and 'user already exists' not in create_admin.stderr
|
|
|
|
- name: "Wait until Gitea setup and migrations are ready"
|
|
uri:
|
|
url: "http://127.0.0.1:{{ ports.localhost.http[application_id] }}/api/v1/version"
|
|
method: GET
|
|
status_code: 200
|
|
return_content: no
|
|
register: gitea_ready
|
|
until: gitea_ready.status == 200
|
|
retries: 20
|
|
delay: 5
|
|
when: applications | get_app_conf(application_id, 'features.oidc', False) or applications | get_app_conf(application_id, 'features.ldap', False)
|
|
|
|
- name: Execute Setup Routines
|
|
include_tasks: 02_setup.yml
|
|
|
|
- name: Execute Cleanup Routines
|
|
include_tasks: 03_cleanup.yml
|
|
when: MODE_CLEANUP
|
|
|
|
- name: Include DNS role to register Gitea domain(s)
|
|
include_role:
|
|
name: sys-dns-cloudflare-records
|
|
vars:
|
|
cloudflare_records:
|
|
- zone: "{{ domains | get_domain(application_id) | to_zone }}"
|
|
type: A
|
|
name: "{{ domains | get_domain(application_id) }}"
|
|
content: "{{ networks.internet.ip4 }}"
|
|
proxied: false # Necessary for SSH port
|
|
when: DNS_PROVIDER == 'cloudflare' |