Compare commits

...

4 commits

Author SHA1 Message Date
385cb3859c
Remove whoami from default site playbook
whoami should be used as a test and debugging container and should not
be necessary or used for production deployment.
2022-12-18 15:53:26 +01:00
1ceee17eda
Add local test setup to ignored files 2022-12-18 15:50:23 +01:00
926f1f475f
Fix ntfy settings
Fixed numeric settings for ntfy and a corrected command executed.
2022-12-18 15:47:14 +01:00
8aaefd3f60
Fix gitea admin deployment to be less brittle
Admin deployment was very timing-dependent: If the server took a while
to set it up, it would always error out while deploying. This commit
adds sufficient grace-time into the admin request call before the error
occurs which should avoid it in most deployments (unless the server is
severely underpowered or over-taxed).

Also fixes admin creation to avoid root usage in the container when it
is not called for.
2022-12-18 12:00:33 +01:00
7 changed files with 41 additions and 38 deletions

1
.gitignore vendored
View file

@ -60,3 +60,4 @@ tags
# End of https://www.toptal.com/developers/gitignore/api/vim,linux,vagrant,ansible # End of https://www.toptal.com/developers/gitignore/api/vim,linux,vagrant,ansible
development.yml development.yml
single-test.yml

View file

@ -3,7 +3,8 @@
container: "{{ gitea_app_container_name['stdout'] }}" container: "{{ gitea_app_container_name['stdout'] }}"
command: > command: >
gitea admin user create --admin --username {{ gitea_app_admin_username }} --password {{ gitea_app_admin_password }} --email {{ gitea_app_admin_email }} gitea admin user create --admin --username {{ gitea_app_admin_username }} --password {{ gitea_app_admin_password }} --email {{ gitea_app_admin_email }}
become: yes user: git
become: true
listen: "no admin user" listen: "no admin user"
## Register reverse proxy ## Register reverse proxy

View file

@ -91,14 +91,21 @@
become: yes become: yes
tags: tags:
- docker-swarm - docker-swarm
register: gitea_deployment
notify: "update gitea upstream" notify: "update gitea upstream"
- name: Wait 30 seconds for gitea to become healthy
wait_for:
timeout: 60
delegate_to: localhost
when: gitea_deployment is changed
- name: Get app container info - name: Get app container info
ansible.builtin.command: ansible.builtin.command:
cmd: docker ps -q -f name={{ stack_name }}_app cmd: docker ps -q -f name={{ stack_name }}_app
become: yes become: yes
until: gitea_app_container_name['rc'] == 0 and gitea_app_container_name['stdout'] | length >= 1 until: gitea_app_container_name['rc'] == 0 and gitea_app_container_name['stdout'] | length >= 1
retries: 5 retries: 10
delay: 10 delay: 10
changed_when: False changed_when: False
register: gitea_app_container_name register: gitea_app_container_name
@ -109,11 +116,10 @@
user: git user: git
command: > command: >
gitea admin user list --admin gitea admin user list --admin
become: yes until: gitea_admin_list is defined and gitea_admin_list['rc'] == 0
until: "'connection refused' not in gitea_admin_list['stdout'] and 'Failed to run app' not in gitea_admin_list['stdout']" retries: 15
retries: 10
delay: 10 delay: 10
changed_when: gitea_admin_list['stdout_lines'] | length <= 1 and 'Username' in gitea_admin_list['stdout'] become: true
failed_when: (gitea_admin_list['rc'] == 1 and gitea_admin_list['attempts'] >= 5) or 'Gitea is not supposed to be run as root' in gitea_admin_list['stdout']
register: gitea_admin_list register: gitea_admin_list
changed_when: gitea_admin_list['stdout_lines'] | length <= 1 and 'Username' in gitea_admin_list['stdout']
notify: "no admin user" notify: "no admin user"

View file

@ -1,5 +1,4 @@
--- ---
ntfy_version: latest ntfy_version: latest
ntfy_upstream_file_dir: "{{ docker_stack_files_dir }}/{{ stack_name }}" ntfy_upstream_file_dir: "{{ docker_stack_files_dir }}/{{ stack_name }}"
@ -8,9 +7,9 @@ ntfy_use_https: true
subdomain_alias: push subdomain_alias: push
ntfy_global_topic_limit: "15000" ntfy_global_topic_limit: 15000
ntfy_visitor_subscription_limit: "30" ntfy_visitor_subscription_limit: 30
ntfy_visitor_request_limit_burst: "60" ntfy_visitor_request_limit_burst: 60
ntfy_visitor_request_limit_replenish: "10s" ntfy_visitor_request_limit_replenish: "10s"
ntfy_cache_duration: "12h" ntfy_cache_duration: "12h"
ntfy_attachment_total_size_limit: "5G" ntfy_attachment_total_size_limit: "5G"

View file

@ -14,6 +14,8 @@ services:
- cache:/var/cache/ntfy - cache:/var/cache/ntfy
networks: networks:
- "{{ docker_swarm_public_network_name }}" - "{{ docker_swarm_public_network_name }}"
command:
- serve
volumes: volumes:
cache: cache:

View file

@ -1,7 +1,7 @@
base-url: "https://{{ server_domain }}" base-url: "https://{{ server_domain }}"
global_topic_limit: "{{ ntfy_global_topic_limit }}" global_topic_limit: {{ ntfy_global_topic_limit }}
visitor_subscription_limit: "{{ ntfy_visitor_subscription_limit }}" visitor_subscription_limit: {{ ntfy_visitor_subscription_limit }}
visitor_request_limit_burst: "{{ ntfy_visitor_request_limit_burst }}" visitor_request_limit_burst: {{ ntfy_visitor_request_limit_burst }}
visitor_request_limit_replenish: "{{ ntfy_visitor_request_limit_replenish }}" visitor_request_limit_replenish: "{{ ntfy_visitor_request_limit_replenish }}"
cache-file: "/var/cache/ntfy/cache.db" cache-file: "/var/cache/ntfy/cache.db"
cache_duration: "{{ ntfy_cache_duration }}" cache_duration: "{{ ntfy_cache_duration }}"

View file

@ -1,5 +1,4 @@
--- ---
- hosts: all - hosts: all
tasks: tasks:
- name: Make sure system is fully upgraded - name: Make sure system is fully upgraded
@ -24,11 +23,6 @@
role: caddy role: caddy
tags: caddy tags: caddy
- name: Install whoami
import_role:
role: whoami
tags: whoami
- name: Install wallabag - name: Install wallabag
import_role: import_role:
role: wallabag role: wallabag