2020-12-28 22:53:53 +01:00
|
|
|
---
|
2020-12-10 22:15:09 +01:00
|
|
|
- hosts: pottwal.n39.eu
|
|
|
|
become: true
|
|
|
|
|
|
|
|
vars:
|
|
|
|
ansible_python_interpreter: /usr/bin/python3
|
|
|
|
|
2022-06-29 00:15:43 +02:00
|
|
|
data_dir: "/srv/data"
|
|
|
|
|
|
|
|
|
2022-01-29 19:34:16 +01:00
|
|
|
openhab_image: openhab/openhab:2.5.11
|
2022-06-29 00:15:43 +02:00
|
|
|
openhab_data: "{{ data_dir }}/openhab"
|
2020-12-11 18:59:47 +01:00
|
|
|
openhab_host_port: 8081
|
|
|
|
openhab_configuration_source: https://github.com/netz39/n39-openhab.git
|
|
|
|
openhab_configuration_version: master
|
|
|
|
|
2022-01-06 12:03:36 +01:00
|
|
|
gitea_host_port: 9091
|
2020-12-12 17:34:06 +01:00
|
|
|
uritools_host_port: 8080
|
2021-04-21 17:52:19 +02:00
|
|
|
entities_validation_svc_host_port: 8082
|
2021-04-21 22:29:31 +02:00
|
|
|
shlink_host_port: 8083
|
|
|
|
shlink_domain_name: sl.n39.eu
|
2020-12-12 17:34:06 +01:00
|
|
|
|
2022-06-26 22:54:00 +02:00
|
|
|
hedgedoc_host_port: 8084
|
|
|
|
hedgedoc_image: quay.io/hedgedoc/hedgedoc:1.9.3
|
|
|
|
|
2020-12-10 22:15:09 +01:00
|
|
|
roles:
|
2020-12-28 22:53:53 +01:00
|
|
|
- role: docker_setup
|
|
|
|
vars:
|
|
|
|
docker_data_root: "/srv/docker"
|
|
|
|
- role: apache
|
2022-08-03 20:19:48 +02:00
|
|
|
- role: dd24-dyndns-cron
|
|
|
|
# variables are set in the inventory
|
2020-12-10 22:15:09 +01:00
|
|
|
|
|
|
|
tasks:
|
2022-01-06 12:03:36 +01:00
|
|
|
|
2022-01-30 11:48:09 +01:00
|
|
|
- name: Check if gitea data dir exists
|
|
|
|
ansible.builtin.stat:
|
2022-06-29 00:15:43 +02:00
|
|
|
path: "{{ data_dir }}/gitea"
|
2022-01-30 11:48:09 +01:00
|
|
|
register: gitea_dir
|
|
|
|
- name: Fail if gitea data dir does not exist
|
|
|
|
ansible.builtin.fail:
|
|
|
|
msg: "Gitea data dir is missing, please restore from the backup!"
|
|
|
|
when: not gitea_dir.stat.exists
|
2022-01-06 12:03:36 +01:00
|
|
|
|
2022-01-30 11:48:09 +01:00
|
|
|
# If port 2222 is changed here, it must also be adapted
|
|
|
|
# in the gitea config file (see application volume)!!
|
|
|
|
- name: Setup the docker container for gitea
|
|
|
|
docker_container:
|
|
|
|
name: gitea
|
2022-06-20 01:54:01 +02:00
|
|
|
image: "gitea/gitea:1.16.8"
|
2022-01-30 11:48:09 +01:00
|
|
|
pull: true
|
|
|
|
state: started
|
|
|
|
restart_policy: unless-stopped
|
|
|
|
detach: yes
|
|
|
|
ports:
|
|
|
|
# - 127.0.0.1:{{ gitea_host_port }}:3000
|
|
|
|
- "{{ gitea_host_port }}:3000"
|
|
|
|
- 2222:2222
|
|
|
|
env:
|
|
|
|
APP_NAME="Netz39 Gitea"
|
|
|
|
RUN_MODE="prod"
|
|
|
|
SSH_DOMAIN="gitea.n39.eu"
|
|
|
|
SSH_PORT="2222"
|
|
|
|
SSH_START_SERVER="false"
|
|
|
|
ROOT_URL="https://gitea.n39.eu"
|
|
|
|
DISABLE_REGISTRATION="true"
|
|
|
|
USER_UID=1000
|
|
|
|
USER_GID=1000
|
|
|
|
volumes:
|
2022-06-29 00:15:43 +02:00
|
|
|
- "{{ data_dir }}/gitea:/data:rw"
|
2022-01-06 12:03:36 +01:00
|
|
|
|
2022-01-30 11:48:09 +01:00
|
|
|
- name: Setup proxy site gitea.n39.eu
|
|
|
|
include_role:
|
|
|
|
name: setup-http-site-proxy
|
|
|
|
vars:
|
|
|
|
site_name: "gitea.n39.eu"
|
|
|
|
proxy_port: "{{ gitea_host_port }}"
|
2022-01-06 12:03:36 +01:00
|
|
|
|
2022-01-30 11:42:48 +01:00
|
|
|
- name: Ensure apt-cacher container is running
|
|
|
|
docker_container:
|
|
|
|
name: apt_cacher_ng
|
|
|
|
image: "mrtux/apt-cacher-ng"
|
|
|
|
pull: true
|
|
|
|
state: started
|
|
|
|
restart_policy: unless-stopped
|
|
|
|
detach: yes
|
|
|
|
ports:
|
|
|
|
- 3142:3142
|
|
|
|
|
|
|
|
- name: Ensure the openhab directories exist
|
|
|
|
file:
|
|
|
|
path: "{{ item }}"
|
|
|
|
state: directory
|
|
|
|
with_items:
|
|
|
|
- "{{ openhab_data }}/addons"
|
|
|
|
- "{{ openhab_data }}/conf"
|
|
|
|
- "{{ openhab_data }}/userdata"
|
|
|
|
|
|
|
|
- name: Clone or update configuration
|
|
|
|
git:
|
|
|
|
repo: "{{ openhab_configuration_source }}"
|
|
|
|
version: "{{ openhab_configuration_version }}"
|
|
|
|
dest: "{{ openhab_data }}/conf"
|
|
|
|
clone: yes
|
|
|
|
update: yes
|
|
|
|
|
|
|
|
- name: ensure openhab is up and running
|
|
|
|
docker_container:
|
|
|
|
name: openhab
|
|
|
|
image: "{{ openhab_image }}"
|
|
|
|
pull: true
|
|
|
|
state: started
|
|
|
|
detach: yes
|
|
|
|
interactive: yes
|
|
|
|
tty: yes
|
|
|
|
ports:
|
|
|
|
- "{{ openhab_host_port }}:8080"
|
|
|
|
volumes:
|
|
|
|
- /etc/localtime:/etc/localtime:ro
|
|
|
|
- /etc/timezone:/etc/timezone:ro
|
|
|
|
- "{{ openhab_data }}/addons:/openhab/addons:rw"
|
|
|
|
- "{{ openhab_data }}/conf:/openhab/conf:rw"
|
|
|
|
- "{{ openhab_data }}/userdata:/openhab/userdata:rw"
|
|
|
|
keep_volumes: yes
|
|
|
|
restart_policy: unless-stopped
|
|
|
|
env: EXTRA_JAVA_OPTS="-Duser.timezone=Europe/Berlin"
|
|
|
|
|
|
|
|
- name: Setup proxy site openhab.n39.eu
|
|
|
|
include_role:
|
|
|
|
name: setup-http-site-proxy
|
|
|
|
vars:
|
|
|
|
site_name: openhab.n39.eu
|
|
|
|
proxy_port: "{{ openhab_host_port }}"
|
|
|
|
|
|
|
|
- name: Ensure container for URI tools is running
|
|
|
|
docker_container:
|
|
|
|
name: uritools
|
2022-07-13 21:54:58 +02:00
|
|
|
image: mrtux/clean_uri:0.4.0
|
2022-01-30 11:42:48 +01:00
|
|
|
pull: true
|
|
|
|
state: started
|
|
|
|
detach: yes
|
|
|
|
ports:
|
|
|
|
- "{{ uritools_host_port }}:8080"
|
|
|
|
restart_policy: unless-stopped
|
|
|
|
|
|
|
|
- name: Setup proxy site uritools.n39.eu
|
|
|
|
include_role:
|
|
|
|
name: setup-http-site-proxy
|
|
|
|
vars:
|
|
|
|
site_name: uritools.n39.eu
|
|
|
|
proxy_port: "{{ uritools_host_port }}"
|
|
|
|
|
|
|
|
- name: Ensure container for entities validation service is running
|
|
|
|
docker_container:
|
|
|
|
name: entities_validation_svc
|
|
|
|
image: netz39/entities_validation_svc:v1.0.0
|
|
|
|
pull: true
|
|
|
|
state: started
|
|
|
|
detach: yes
|
|
|
|
ports:
|
|
|
|
- "{{ entities_validation_svc_host_port }}:8080"
|
|
|
|
restart_policy: unless-stopped
|
|
|
|
|
|
|
|
- name: Setup proxy site entities-validation.svc.n39.eu
|
|
|
|
include_role:
|
|
|
|
name: setup-http-site-proxy
|
|
|
|
vars:
|
|
|
|
site_name: entities-validation.svc.n39.eu
|
|
|
|
proxy_port: "{{ entities_validation_svc_host_port }}"
|
|
|
|
|
|
|
|
- name: Ensure container for shlink is running
|
|
|
|
docker_container:
|
|
|
|
name: shlink
|
|
|
|
image: shlinkio/shlink:2.6.2
|
|
|
|
pull: true
|
|
|
|
state: started
|
|
|
|
detach: yes
|
|
|
|
ports:
|
|
|
|
- "{{ shlink_host_port }}:8080"
|
|
|
|
restart_policy: unless-stopped
|
|
|
|
env:
|
|
|
|
SHORT_DOMAIN_HOST: "{{ shlink_domain_name }}"
|
|
|
|
SHORT_DOMAIN_SCHEMA: https
|
|
|
|
GEOLITE_LICENSE_KEY: "{{ shlink_geolite_license_key }}"
|
|
|
|
|
|
|
|
- name: Setup proxy site {{ shlink_domain_name }}
|
|
|
|
include_role:
|
|
|
|
name: setup-http-site-proxy
|
|
|
|
vars:
|
|
|
|
site_name: "{{ shlink_domain_name }}"
|
2022-01-30 11:48:51 +01:00
|
|
|
proxy_port: "{{ shlink_host_port }}"
|
|
|
|
|
2022-06-26 22:54:00 +02:00
|
|
|
- name: Check if hedgedoc data dir exists
|
|
|
|
ansible.builtin.stat:
|
2022-06-29 00:15:43 +02:00
|
|
|
path: "{{ data_dir }}/hedgedoc"
|
2022-06-26 22:54:00 +02:00
|
|
|
register: hedgedoc_dir
|
|
|
|
- name: Fail if hedgedoc data dir does not exist
|
|
|
|
ansible.builtin.fail:
|
|
|
|
msg: "hedgedoc data dir is missing, please restore from the backup!"
|
|
|
|
when: not hedgedoc_dir.stat.exists
|
|
|
|
|
|
|
|
- name: Ensure the hedgedoc directories exist
|
|
|
|
file:
|
|
|
|
path: "{{ item }}"
|
|
|
|
state: directory
|
|
|
|
with_items:
|
2022-06-29 00:15:43 +02:00
|
|
|
- "{{ data_dir }}/hedgedoc/data/database"
|
|
|
|
- "{{ data_dir }}/hedgedoc/data/uploads"
|
2022-06-26 22:54:00 +02:00
|
|
|
|
|
|
|
- name: Setup docker network
|
|
|
|
docker_network:
|
|
|
|
name: hedgedocnet
|
|
|
|
state: present
|
|
|
|
internal: true
|
|
|
|
|
|
|
|
- name: Install HedgeDoc database container
|
|
|
|
docker_container:
|
|
|
|
name: hedgedocdb
|
|
|
|
image: "postgres:11.6-alpine"
|
|
|
|
pull: true
|
|
|
|
state: started
|
|
|
|
restart_policy: unless-stopped
|
|
|
|
detach: yes
|
|
|
|
env:
|
2022-06-28 21:51:22 +02:00
|
|
|
POSTGRES_USER: "hedgedoc"
|
2022-06-26 22:54:00 +02:00
|
|
|
POSTGRES_PASSWORD: "{{ hedgedoc_postgres_password }}"
|
2022-06-28 21:51:22 +02:00
|
|
|
POSTGRES_DB: "hedgedoc"
|
2022-06-26 22:54:00 +02:00
|
|
|
volumes:
|
2022-06-29 00:15:43 +02:00
|
|
|
- "{{ data_dir }}/hedgedoc/data/database:/var/lib/postgresql/data"
|
2022-06-26 22:54:00 +02:00
|
|
|
networks:
|
|
|
|
- name: hedgedocnet
|
2022-07-08 07:20:57 +02:00
|
|
|
|
2022-06-26 22:54:00 +02:00
|
|
|
- name: Ensure container for hedgedoc is running
|
|
|
|
docker_container:
|
|
|
|
name: hedgedoc
|
|
|
|
image: "{{ hedgedoc_image }}"
|
|
|
|
pull: true
|
|
|
|
state: started
|
|
|
|
detach: yes
|
|
|
|
ports:
|
|
|
|
- "{{ hedgedoc_host_port }}:3000"
|
|
|
|
restart_policy: unless-stopped
|
|
|
|
env:
|
2022-06-28 21:51:22 +02:00
|
|
|
NODE_ENV: "production"
|
2022-06-28 21:43:26 +02:00
|
|
|
CMD_PROTOCOL_USESSL: "true"
|
2022-06-28 21:51:22 +02:00
|
|
|
CMD_DOMAIN: "pad.n39.eu"
|
2022-06-28 21:43:26 +02:00
|
|
|
CMD_URL_ADDPORT: "false"
|
2022-06-28 21:51:22 +02:00
|
|
|
CMD_DB_HOST: "hedgedocdb"
|
|
|
|
CMD_DB_PORT: "5432"
|
|
|
|
CMD_DB_DIALECT: "postgres"
|
|
|
|
CMD_DB_DATABASE: "hedgedoc"
|
|
|
|
CMD_DB_USERNAME: "hedgedoc"
|
2022-06-26 22:54:00 +02:00
|
|
|
CMD_DB_PASSWORD: "{{ hedgedoc_postgres_password }}"
|
|
|
|
volumes:
|
2022-06-29 00:15:43 +02:00
|
|
|
- "{{ data_dir }}/hedgedoc/data/uploads:/hedgedoc/public/uploads"
|
2022-06-26 22:54:00 +02:00
|
|
|
networks:
|
|
|
|
- name: hedgedocnet
|
|
|
|
|
|
|
|
- name: Setup proxy site pad.n39.eu
|
|
|
|
include_role:
|
|
|
|
name: setup-http-site-proxy
|
|
|
|
vars:
|
|
|
|
site_name: pad.n39.eu
|
|
|
|
proxy_port: "{{ hedgedoc_host_port }}"
|
|
|
|
|
2022-07-04 18:38:22 +02:00
|
|
|
|
2020-12-11 18:59:47 +01:00
|
|
|
handlers:
|