Role that installs ePAS as a docker swarm stack
Go to file
Andrea Dell'Amico 85496a65a5 Role that installs the epas server. 2020-10-26 15:48:35 +01:00
defaults Role that installs the epas server. 2020-10-26 15:48:35 +01:00
handlers Initial commit 2020-10-23 16:00:26 +02:00
meta Role that installs the epas server. 2020-10-26 15:48:35 +01:00
tasks Role that installs the epas server. 2020-10-26 15:48:35 +01:00
templates Role that installs the epas server. 2020-10-26 15:48:35 +01:00
tests Initial commit 2020-10-23 16:00:26 +02:00
vars Role that installs the epas server. 2020-10-26 15:48:35 +01:00
.gitignore Initial commit 2020-10-23 16:00:26 +02:00
LICENSE Initial commit 2020-10-23 16:00:26 +02:00
README.md Role that installs the epas server. 2020-10-26 15:48:35 +01:00

README.md

Role Name

A role that installs ePAS, electronic Personnel Attendance System. https://epas.projects.iit.cnr.it

Role Variables

The most important variables are listed below:

epas_docker_stack_name: 'epas_prod'
epas_docker_service_server_name: 'epas'
epas_docker_registry: 'docker-registry.services.iit.cnr.it'
epas_docker_server_image: '{{ epas_docker_registry }}/epas/epas:stable'
epas_docker_registry_user: 'epas.user'
epas_docker_registry_pwd: 'use a vault file'
epas_docker_network: 'epas_net'
epas_attachments_node: 'localhost'
epas_attachments_volume: 'epas_attachments_data'
epas_node_constraints: 'node.labels.epas_storage == attachments'
epas_behind_haproxy: True
epas_haproxy_public_net: 'haproxy-public'
# DB
# Set to true if postgresql must be a container too
epas_dockerized_db: False
# IMPORTANT. Set it to True for the server that is going to host the DB
epas_docker_db_node: False
epas_pg_version: '12'
epas_db_image: 'postgres:{{ epas_pg_version }}-alpine'
# The default hostname is the name of the container service
epas_db_host: 'postgres'
epas_db_name: 'epas_prod_db'
epas_db_allowed_hosts:
  - '127.0.0.1'
#epas_db_pwd: 'set it in a vault file'
epas_db_user: 'epas_prod_user'
epas_db_volume: 'epas_prod_pg_data'
epas_db_constraints: '[node.labels.pg_data==epas_db]'
epas_pg_data_volume: 'epas_db_data'
epas_pg_backups_volume: 'epas_db_data'
psql_db_data: '{{ epas_psql_pg_data }}'
# Environment
epas_server_hostname: 'epas.example.com'
## SMTP
epas_smtp_server: 'localhost'
epas_smtp_port: 587
epas_smtp_channel: 'starttls'
epas_smtp_from: 'epas@cnr.it'
epas_smtp_protocol: 'smtp'
epas_smtp_authentication: True
epas_smtp_user: ''
epas_smtp_password: 'use a vault file'
## LDAP
epas_ldap_login: 'false'
epas_ldap_url: 'ldap://ldap.example.org:389'
epas_ldap_timeout: 1000
epas_ldap_base_dn: 'ou=People,dc=example,dc=org'
epas_ldap_login_return_uri: '/.'
epas_ldap_eppn_attribute_name: 'eduPersonPrincipalName'

Dependencies

A docker swarm cluster is required

License

EUPL-1.2

Author Information

Andrea DellAmico, andrea.dellamico@isti.cnr.it