First commit.

This commit is contained in:
Andrea Dell'Amico 2021-11-08 12:23:34 +01:00
parent 2193302a84
commit 1db5cc62a5
Signed by: andrea.dellamico
GPG Key ID: 147ABE6CEB9E20FF
5 changed files with 200 additions and 53 deletions

View File

@ -1,31 +1,52 @@
Role Name
=========
A brief description of the role goes here.
Requirements
------------
Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required.
A role that installs min.io as a Docker Swarm stack, <https://min.io/>
Role Variables
--------------
A description of the settable variables for this role should go here, including any variables that are in defaults/main.yml, vars/main.yml, and any variables that can/should be set via parameters to the role. Any variables that are read from other roles and/or the global scope (ie. hostvars, group vars, etc.) should be mentioned here as well.
The most important variables are listed below:
``` yaml
minio_compose_dir: '/srv/minio_stack'
minio_docker_stack_name: 'minio'
minio_root_user: minio_admin
minio_root_password: 'use a vault'
minio_docker_service_server_name: 'minio'
minio_docker_server_image: 'quay.io/minio/minio:RELEASE.2021-10-23T03-28-24Z'
minio_docker_network: 'minio_net'
minio_server_instances:
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
#
minio_data_prefix: /minio
minio_volume_prefix: /min_io
minio_disk_volumes:
- 3
- 4
minio_behind_haproxy: True
minio_haproxy_public_net: 'haproxy-public'
# DB
minio_constraints: '[node.labels.minio==minio1]'
minio_keylocak_auth_url: http://localhost:8080/auth/
minio_keycloak_client_secret: 'use a vault'
minio_keycloak_realm: 'realm'
minio_keycloak_client_name: 'minio_client_name'
minio_keycloak_client_id: 'minio_client_id'
```
Dependencies
------------
A list of other roles hosted on Galaxy should go here, plus any details in regards to parameters that may need to be set for other roles, or variables that are used from other roles.
Example Playbook
----------------
Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too:
- hosts: servers
roles:
- { role: username.rolename, x: 42 }
* Docker Swarm
License
-------
@ -35,4 +56,4 @@ EUPL-1.2
Author Information
------------------
An optional section for the role authors to include contact information, or a website (HTML is not allowed).
Andrea Dell'Amico, <andrea.dellamico@isti.cnr.it>

View File

@ -1,2 +1,32 @@
---
# defaults file for ansible-role-template
minio_compose_dir: '/srv/minio_stack'
minio_docker_stack_name: 'minio'
minio_root_user: minio_admin
#minio_root_password: 'use a vault'
minio_docker_service_server_name: 'minio'
minio_docker_server_image: 'quay.io/minio/minio:RELEASE.2021-10-23T03-28-24Z'
minio_docker_network: 'minio_net'
minio_server_instances:
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
#
minio_data_prefix: /minio
minio_volume_prefix: /min_io
minio_disk_volumes:
- 3
- 4
minio_behind_haproxy: True
minio_haproxy_public_net: 'haproxy-public'
# DB
minio_constraints: '[node.labels.minio==minio1]'
minio_keylocak_auth_url: http://localhost:8080/auth/
minio_keycloak_client_secret: 'use a vault'
minio_keycloak_realm: 'realm'
minio_keycloak_client_name: 'minio_client_name'
minio_keycloak_client_id: 'minio_client_id'

View File

@ -1,46 +1,27 @@
galaxy_info:
author: your name
description: your description
company: your company (optional)
author: Andrea Dell'Amico
description: Systems Architect
company: ISTI-CNR
# If the issue tracker for your role is not on github, uncomment the
# next line and provide a value
issue_tracker_url: https://support.d4science.org/projects/automatic-provisioning/issues
issue_tracker_url: https://redmine-s2i2s.isti.cnr.it/projects/provisioning
license: EUPL-1.2
license: EUPL 1.2+
min_ansible_version: 2.8
# If this a Container Enabled role, provide the minimum Ansible Container version.
# min_ansible_container_version:
# Optionally specify the branch Galaxy will use when accessing the GitHub
# repo for this role. During role install, if no tags are available,
# Galaxy will use this branch. During import Galaxy will access files on
# this branch. If Travis integration is configured, only notifications for this
# branch will be accepted. Otherwise, in all cases, the repo's default branch
# (usually master) will be used.
#github_branch:
#
# Provide a list of supported platforms, and for each platform a list of versions.
# If you don't wish to enumerate all versions for a particular platform, use 'all'.
# To view available platforms and versions (or releases), visit:
# https://galaxy.ansible.com/api/v1/platforms/
#
platforms:
- name: Ubuntu
versions:
- bionic
- name: Ubuntu
versions:
- bionic
- name: EL
versions:
- 7
- 8
galaxy_tags: []
# List tags for your role here, one per line. A tag is a keyword that describes
# and categorizes the role. Users find roles by searching for tags. Be sure to
# remove the '[]' above, if you add tags to this list.
#
# NOTE: A tag is limited to a single word comprised of alphanumeric characters.
# Maximum 20 tags per role.
galaxy_tags:
- users
dependencies: []
# List your role dependencies here, one per line. Be sure to remove the '[]' above,
# if you add dependencies to this list.

View File

@ -1,2 +1,64 @@
---
# tasks file for ansible-role-template
- name: Manage the installation of the OpenASFA configuration of the database
block:
- name: Create the directory where the DB init script is going to be installed
file: dest={{ open_asfa_compose_dir }} state=directory
- name: Install the DB initialization script
template: src=pg-create-user-db.sh.j2 dest={{ open_asfa_compose_dir }}/pg-create-user-db.sh owner=root group=root mode='0555'
run_once: True
when:
- open_asfa_db_docker_host == ansible_fqdn
- open_asfa_db_as_container
tags: [ 'open_asfa', 'open_asfa_swarm', 'open_asfa_db' ]
- name: Manage the installation of the OpenASFA configuration of pgadmin
block:
- name: Create the directory where the pgadmin configuration is going to be installed
file: dest={{ open_asfa_compose_dir }} state=directory
- name: Install the pgadmin configuration files
template: src={{ item }}.j2 dest={{ open_asfa_compose_dir }}/{{ item }} owner=root group=root mode='0444'
loop:
- pgadmin_config_local.py
- pgadmin_servers.json
run_once: True
when: open_asfa_pgadmin_docker_host == ansible_fqdn
tags: [ 'open_asfa', 'open_asfa_swarm', 'open_asfa_db' ]
- name: Manage the installation of the OpenASFA configuration of the swarm service
block:
- name: Add the label that will be used as a constraint for the PostgreSQL DB
docker_node:
hostname: '{{ open_asfa_db_docker_host }}'
labels:
asfa_pg_data: 'asfa_server'
labels_state: 'merge'
when: open_asfa_db_as_container
- name: Add the label that will be used as a constraint for the Pgadmin service
docker_node:
hostname: '{{ open_asfa_pgadmin_docker_host }}'
labels:
asfa_pgadmin_data: 'asfa_server'
labels_state: 'merge'
- name: Install the docker compose file
template: src=open-asfa-docker-compose.yml.j2 dest={{ open_asfa_compose_dir }}/docker-open-asfa-stack.yml owner=root group=root mode='0400'
- name: Install the docker compose file for postgresql and pgadmin
template: src=open-asfa-db-docker-compose.yml.j2 dest={{ open_asfa_compose_dir }}/docker-open-asfa-stack-db.yml owner=root group=root mode='0400'
- name: Start the OpenAsfa stack
docker_stack:
name: open-asfa
state: present
compose:
- '{{ open_asfa_compose_dir }}/docker-open-asfa-stack-db.yml'
# - '{{ open_asfa_compose_dir }}/docker-open-asfa-stack.yml'
run_once: True
when: docker_swarm_manager_main_node is defined and docker_swarm_manager_main_node | bool
tags: [ 'open_asfa', 'open_asfa_swarm' ]

View File

@ -0,0 +1,53 @@
version: '3.6'
networks:
{% if minio_behind_haproxy %}
haproxy-public:
external: true
{% endif %}
{{ minio_docker_network }}:
volumes:
{% for vol in minio_disk_volumes %}
{{ minio_volume_prefix }}/{{ vol }}:
{% endfor %}
services:
{% for i in minio_server_instances %}
{{ minio_docker_service_server_name }}{{ i }}:
image: {{ minio_docker_server_image }}
networks:
- {{ minio_docker_network }}
{% if minio_behind_haproxy %}
- haproxy-public
{% endif %}
environment:
MINIO_ROOT_USER: {{ minio_root_user }}
MINIO_ROOT_PASSWORD: {{ minio_root_password }}
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
interval: 30s
timeout: 20s
retries: 3
volumes:
{% for vol in minio_disk_volumes %}
- {{ minio_volume_prefix }}/{{ vol }}:{{ minio_data_prefix }}{{ vol }}
{% endfor %}
command: server --console-address ":9001" http://{{ minio_docker_service_server_name }}{1...8}/{{ minio_data_prefix }}{1...2}
deploy:
mode: replicated
replicas: 1
endpoint_mode: dnsrr
placement:
constraints:
- node.role == worker
- node.labels.minio == minio{{ i }}
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 3
window: 120s
logging:
driver: 'journald'
{% endfor %}