Fix pre-commit hooks and move directories
roles/ and inventory/ are now in playbooks/ also fixed issues reported by ansible-lint
This commit is contained in:
parent
dc398ddb6e
commit
4104057771
123 changed files with 91 additions and 39 deletions
12
playbooks/roles/tandoor/tasks/main.yml
Normal file
12
playbooks/roles/tandoor/tasks/main.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
- name: Set common facts
|
||||
ansible.builtin.import_tasks: tasks/set-default-facts.yml
|
||||
|
||||
- name: Deploy {{ role_name }}
|
||||
vars:
|
||||
svc: "{{ tandoor_svc }}"
|
||||
env: "{{ tandoor_env }}"
|
||||
compose: "{{ tandoor_compose }}"
|
||||
block:
|
||||
- name: Import tasks to deploy common service
|
||||
ansible.builtin.import_tasks: tasks/deploy-common-service.yml
|
62
playbooks/roles/tandoor/vars/main.yml
Normal file
62
playbooks/roles/tandoor/vars/main.yml
Normal file
|
@ -0,0 +1,62 @@
|
|||
---
|
||||
tandoor_svc:
|
||||
domain: recipes.serguzim.me
|
||||
port: 80
|
||||
db:
|
||||
host: "{{ postgres.host }}"
|
||||
port: "{{ postgres.port }}"
|
||||
user: "{{ opentofu.postgresql_data.tandoor.user }}"
|
||||
pass: "{{ opentofu.postgresql_data.tandoor.pass }}"
|
||||
database: "{{ opentofu.postgresql_data.tandoor.database }}"
|
||||
|
||||
tandoor_env:
|
||||
DEBUG: 0
|
||||
SQL_DEBUG: 0
|
||||
|
||||
ALLOWED_HOSTS: recipes.serguzim.me
|
||||
SECRET_KEY: "{{ vault_tandoor.secret_key }}"
|
||||
TZ: "{{ timezone }}"
|
||||
|
||||
DB_ENGINE: django.db.backends.postgresql
|
||||
DB_OPTIONS: '{"sslmode": "require"}'
|
||||
POSTGRES_HOST: "{{ svc.db.host }}"
|
||||
POSTGRES_PORT: "{{ svc.db.port }}"
|
||||
POSTGRES_DB: "{{ svc.db.database }}"
|
||||
POSTGRES_USER: "{{ svc.db.user }}"
|
||||
POSTGRES_PASSWORD: "{{ svc.db.pass }}"
|
||||
|
||||
SHOPPING_MIN_AUTOSYNC_INTERVAL: 5
|
||||
|
||||
ENABLE_SIGNUP: 0
|
||||
ENABLE_METRICS: 1
|
||||
ENABLE_PDF_EXPORT: 1
|
||||
|
||||
SOCIAL_DEFAULT_ACCESS: 1
|
||||
SOCIAL_DEFAULT_GROUP: guest
|
||||
|
||||
tandoor_compose:
|
||||
watchtower: true
|
||||
image: nginx:mainline-alpine
|
||||
volumes:
|
||||
- nginx_config:/etc/nginx/conf.d:ro
|
||||
- staticfiles:/static
|
||||
- mediafiles:/media
|
||||
file:
|
||||
services:
|
||||
web_recipes:
|
||||
image: vabene1111/recipes
|
||||
restart: always
|
||||
labels:
|
||||
com.centurylinklabs.watchtower.enable: true
|
||||
env_file:
|
||||
- service.env
|
||||
volumes:
|
||||
- staticfiles:/opt/recipes/staticfiles
|
||||
- nginx_config:/opt/recipes/nginx/conf.d
|
||||
- mediafiles:/opt/recipes/mediafiles
|
||||
networks:
|
||||
default:
|
||||
volumes:
|
||||
nginx_config:
|
||||
staticfiles:
|
||||
mediafiles:
|
Loading…
Add table
Add a link
Reference in a new issue