fusion roles db et registry
This commit is contained in:
parent
9799d9c39c
commit
44dce58617
@ -1,34 +0,0 @@
|
|||||||
# deploy db postgresql, liquibase and redis
|
|
||||||
|
|
||||||
- name: git archive local
|
|
||||||
local_action:
|
|
||||||
module: git
|
|
||||||
repo: "https://{{ git_username | urlencode }}:{{ git_password | urlencode }}@git.valczeryba.ovh/v4l3n71n/covas-liquibase.git"
|
|
||||||
dest: "/home/valentin/src/"
|
|
||||||
archive: "/tmp/covas-liquibase.tar.gz"
|
|
||||||
force: yes
|
|
||||||
update: yes
|
|
||||||
run_once: True
|
|
||||||
|
|
||||||
- name: Create directory
|
|
||||||
file:
|
|
||||||
path: "/home/valentin/{{ item }}"
|
|
||||||
state: directory
|
|
||||||
with_items:
|
|
||||||
- db
|
|
||||||
- db/covas-liquibase
|
|
||||||
|
|
||||||
- name: Extract covas liquibase
|
|
||||||
unarchive:
|
|
||||||
src: "/tmp/covas-liquibase.tar.gz"
|
|
||||||
dest: "/home/valentin/db/covas-liquibase"
|
|
||||||
|
|
||||||
- name: Template env file
|
|
||||||
template:
|
|
||||||
src: env.j2
|
|
||||||
dest: /home/valentin/db/.env
|
|
||||||
|
|
||||||
- name: Copy docker compose server file
|
|
||||||
copy:
|
|
||||||
src: docker-compose-server.yml
|
|
||||||
dest: /home/valentin/db/docker-compose.yml
|
|
@ -1,23 +0,0 @@
|
|||||||
---
|
|
||||||
# tasks file for server
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# include task db
|
|
||||||
|
|
||||||
- name: Deploy database postgresql and redis
|
|
||||||
ansible.builtin.import_tasks: deploy-db.yml
|
|
||||||
tags: ["create-db", "deploy-db"]
|
|
||||||
|
|
||||||
- name: Start db postgresql and redis
|
|
||||||
ansible.builtin.import_tasks: start-db.yml
|
|
||||||
tags: ["deploy-db", "start-db"]
|
|
||||||
|
|
||||||
|
|
||||||
- name: stop db postgresql and redis
|
|
||||||
ansible.builtin.import_tasks: stop-db.yml
|
|
||||||
tags: ["destroy-db", "stop-db"]
|
|
||||||
|
|
||||||
- name: Remove db
|
|
||||||
ansible.builtin.import_tasks: remove-db.yml
|
|
||||||
tags: ["destroy-db"]
|
|
@ -1,18 +0,0 @@
|
|||||||
# remove db
|
|
||||||
|
|
||||||
- name: Stopping existing service
|
|
||||||
community.docker.docker_compose:
|
|
||||||
project_src: /home/valentin/db
|
|
||||||
state: absent
|
|
||||||
remove_volumes: yes
|
|
||||||
remove_images: local
|
|
||||||
register: output
|
|
||||||
|
|
||||||
- name: Debug output
|
|
||||||
debug:
|
|
||||||
var: output
|
|
||||||
|
|
||||||
- name: Remove project covas db
|
|
||||||
file:
|
|
||||||
path: /home/valentin/db
|
|
||||||
state: absent
|
|
@ -1,39 +0,0 @@
|
|||||||
# start services db
|
|
||||||
|
|
||||||
- name: Stopping existing service
|
|
||||||
community.docker.docker_compose:
|
|
||||||
project_src: /home/valentin/db
|
|
||||||
state: absent
|
|
||||||
|
|
||||||
- name: Starting service
|
|
||||||
community.docker.docker_compose:
|
|
||||||
project_src: /home/valentin/db
|
|
||||||
register: output
|
|
||||||
|
|
||||||
- name: debug output
|
|
||||||
debug:
|
|
||||||
var: output
|
|
||||||
|
|
||||||
- name: Allow port postgresql
|
|
||||||
ansible.builtin.iptables:
|
|
||||||
chain: INPUT
|
|
||||||
protocol: tcp
|
|
||||||
destination_port: 54321
|
|
||||||
jump: ACCEPT
|
|
||||||
state: present
|
|
||||||
vars:
|
|
||||||
ansible_become: yes
|
|
||||||
ansible_become_method: sudo
|
|
||||||
ansible_become_password: "{{ sudo_password }}"
|
|
||||||
|
|
||||||
- name: Allow port redis
|
|
||||||
ansible.builtin.iptables:
|
|
||||||
chain: INPUT
|
|
||||||
protocol: tcp
|
|
||||||
destination_port: 63791
|
|
||||||
jump: ACCEPT
|
|
||||||
state: present
|
|
||||||
vars:
|
|
||||||
ansible_become: yes
|
|
||||||
ansible_become_method: sudo
|
|
||||||
ansible_become_password: "{{ sudo_password }}"
|
|
@ -1,37 +0,0 @@
|
|||||||
# stop services db and redis
|
|
||||||
|
|
||||||
- name: Disallow port postgresql
|
|
||||||
ansible.builtin.iptables:
|
|
||||||
chain: INPUT
|
|
||||||
protocol: tcp
|
|
||||||
destination_port: 54321
|
|
||||||
jump: ACCEPT
|
|
||||||
state: absent
|
|
||||||
vars:
|
|
||||||
ansible_become: yes
|
|
||||||
ansible_become_method: sudo
|
|
||||||
ansible_become_password: "{{ sudo_password }}"
|
|
||||||
|
|
||||||
- name: Disallow port redis
|
|
||||||
ansible.builtin.iptables:
|
|
||||||
chain: INPUT
|
|
||||||
protocol: tcp
|
|
||||||
destination_port: 63791
|
|
||||||
jump: ACCEPT
|
|
||||||
state: absent
|
|
||||||
vars:
|
|
||||||
ansible_become: yes
|
|
||||||
ansible_become_method: sudo
|
|
||||||
ansible_become_password: "{{ sudo_password }}"
|
|
||||||
|
|
||||||
- name: Stopping existing service
|
|
||||||
community.docker.docker_compose:
|
|
||||||
project_src: /home/valentin/db
|
|
||||||
state: present
|
|
||||||
stopped: yes
|
|
||||||
register: output
|
|
||||||
|
|
||||||
|
|
||||||
- name: Debug output
|
|
||||||
debug:
|
|
||||||
var: output
|
|
@ -1 +1,16 @@
|
|||||||
postgres_db: toto
|
postgres_db: toto
|
||||||
|
|
||||||
|
project_src: "/home/valentin/db"
|
||||||
|
project_name: "covas-liquibase"
|
||||||
|
|
||||||
|
project_directory:
|
||||||
|
- "{{ project_src }}"
|
||||||
|
- "{{ project_src }}/{{ project_name }}"
|
||||||
|
|
||||||
|
docker_compose_file: "docker-compose-db.yml"
|
||||||
|
|
||||||
|
project_env: "env-db.j2"
|
||||||
|
|
||||||
|
ports_tcp:
|
||||||
|
- 54321
|
||||||
|
- 63791
|
11
inventory/group_vars/registry
Normal file
11
inventory/group_vars/registry
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
|
||||||
|
project_src: "/home/valentin/registry"
|
||||||
|
|
||||||
|
project_directory:
|
||||||
|
- "{{ project_src }}"
|
||||||
|
|
||||||
|
docker_compose_file: "docker-compose-registry.yml"
|
||||||
|
|
||||||
|
|
||||||
|
ports_tcp:
|
||||||
|
- 5000
|
@ -11,6 +11,9 @@ db
|
|||||||
[nas]
|
[nas]
|
||||||
valentin-nas
|
valentin-nas
|
||||||
|
|
||||||
|
[registry:children]
|
||||||
|
nas
|
||||||
|
|
||||||
[nas_vault:children]
|
[nas_vault:children]
|
||||||
nas
|
nas
|
||||||
|
|
||||||
|
@ -1,13 +1,8 @@
|
|||||||
---
|
---
|
||||||
- hosts: nas
|
- hosts: registry db
|
||||||
remote_user: valentin
|
remote_user: valentin
|
||||||
roles:
|
roles:
|
||||||
- registry
|
- server
|
||||||
|
|
||||||
- hosts: db
|
|
||||||
remote_user: valentin
|
|
||||||
roles:
|
|
||||||
- db
|
|
||||||
|
|
||||||
- hosts: local
|
- hosts: local
|
||||||
remote_user: valentin
|
remote_user: valentin
|
||||||
|
@ -1,29 +0,0 @@
|
|||||||
---
|
|
||||||
language: python
|
|
||||||
python: "2.7"
|
|
||||||
|
|
||||||
# Use the new container infrastructure
|
|
||||||
sudo: false
|
|
||||||
|
|
||||||
# Install ansible
|
|
||||||
addons:
|
|
||||||
apt:
|
|
||||||
packages:
|
|
||||||
- python-pip
|
|
||||||
|
|
||||||
install:
|
|
||||||
# Install ansible
|
|
||||||
- pip install ansible
|
|
||||||
|
|
||||||
# Check ansible version
|
|
||||||
- ansible --version
|
|
||||||
|
|
||||||
# Create ansible.cfg with correct roles_path
|
|
||||||
- printf '[defaults]\nroles_path=../' >ansible.cfg
|
|
||||||
|
|
||||||
script:
|
|
||||||
# Basic role syntax check
|
|
||||||
- ansible-playbook tests/test.yml -i tests/inventory --syntax-check
|
|
||||||
|
|
||||||
notifications:
|
|
||||||
webhooks: https://galaxy.ansible.com/api/v1/notifications/
|
|
@ -1,38 +0,0 @@
|
|||||||
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.
|
|
||||||
|
|
||||||
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.
|
|
||||||
|
|
||||||
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 }
|
|
||||||
|
|
||||||
License
|
|
||||||
-------
|
|
||||||
|
|
||||||
BSD
|
|
||||||
|
|
||||||
Author Information
|
|
||||||
------------------
|
|
||||||
|
|
||||||
An optional section for the role authors to include contact information, or a website (HTML is not allowed).
|
|
@ -1,2 +0,0 @@
|
|||||||
---
|
|
||||||
# defaults file for server
|
|
@ -1,2 +0,0 @@
|
|||||||
---
|
|
||||||
# handlers file for server
|
|
@ -1,52 +0,0 @@
|
|||||||
galaxy_info:
|
|
||||||
author: your name
|
|
||||||
description: your role description
|
|
||||||
company: your company (optional)
|
|
||||||
|
|
||||||
# If the issue tracker for your role is not on github, uncomment the
|
|
||||||
# next line and provide a value
|
|
||||||
# issue_tracker_url: http://example.com/issue/tracker
|
|
||||||
|
|
||||||
# Choose a valid license ID from https://spdx.org - some suggested licenses:
|
|
||||||
# - BSD-3-Clause (default)
|
|
||||||
# - MIT
|
|
||||||
# - GPL-2.0-or-later
|
|
||||||
# - GPL-3.0-only
|
|
||||||
# - Apache-2.0
|
|
||||||
# - CC-BY-4.0
|
|
||||||
license: license (GPL-2.0-or-later, MIT, etc)
|
|
||||||
|
|
||||||
min_ansible_version: 2.1
|
|
||||||
|
|
||||||
# If this a Container Enabled role, provide the minimum Ansible Container version.
|
|
||||||
# min_ansible_container_version:
|
|
||||||
|
|
||||||
#
|
|
||||||
# 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: Fedora
|
|
||||||
# versions:
|
|
||||||
# - all
|
|
||||||
# - 25
|
|
||||||
# - name: SomePlatform
|
|
||||||
# versions:
|
|
||||||
# - all
|
|
||||||
# - 1.0
|
|
||||||
# - 7
|
|
||||||
# - 99.99
|
|
||||||
|
|
||||||
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.
|
|
||||||
|
|
||||||
dependencies: []
|
|
||||||
# List your role dependencies here, one per line. Be sure to remove the '[]' above,
|
|
||||||
# if you add dependencies to this list.
|
|
@ -1,13 +0,0 @@
|
|||||||
# deploy docker registry
|
|
||||||
|
|
||||||
- name: Create directory
|
|
||||||
file:
|
|
||||||
path: "/home/valentin/{{ item }}"
|
|
||||||
state: directory
|
|
||||||
with_items:
|
|
||||||
- registry
|
|
||||||
|
|
||||||
- name: Copy docker compose server file
|
|
||||||
copy:
|
|
||||||
src: docker-compose-registry.yml
|
|
||||||
dest: /home/valentin/registry/docker-compose.yml
|
|
@ -1,23 +0,0 @@
|
|||||||
---
|
|
||||||
# tasks file for server
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# include task registry
|
|
||||||
|
|
||||||
- name: Deploy registry
|
|
||||||
ansible.builtin.import_tasks: deploy-registry.yml
|
|
||||||
tags: ["create-registry", "deploy-registry"]
|
|
||||||
|
|
||||||
- name: Start registry
|
|
||||||
ansible.builtin.import_tasks: start-registry.yml
|
|
||||||
tags: ["deploy-registry", "start-registry"]
|
|
||||||
|
|
||||||
|
|
||||||
- name: stop registry
|
|
||||||
ansible.builtin.import_tasks: stop-registry.yml
|
|
||||||
tags: ["destroy-registry", "stop-registry"]
|
|
||||||
|
|
||||||
- name: Remove registry
|
|
||||||
ansible.builtin.import_tasks: remove-registry.yml
|
|
||||||
tags: ["destroy-registry"]
|
|
@ -1,3 +0,0 @@
|
|||||||
POSTGRES_PASSWORD={{ postgres_password }}
|
|
||||||
POSTGRES_USER={{ postgres_user }}
|
|
||||||
POSTGRES_DB={{ postgres_db }}
|
|
@ -1,4 +0,0 @@
|
|||||||
---
|
|
||||||
# vars file for server
|
|
||||||
|
|
||||||
project_src: /home/valentin/registry
|
|
35
server/tasks/deploy.yml
Normal file
35
server/tasks/deploy.yml
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
# deploy db postgresql, liquibase and redis
|
||||||
|
|
||||||
|
- name: git archive local
|
||||||
|
local_action:
|
||||||
|
module: git
|
||||||
|
repo: "https://{{ git_username | urlencode }}:{{ git_password | urlencode }}@git.valczeryba.ovh/v4l3n71n/{{ project_name }}.git"
|
||||||
|
dest: "/home/valentin/src/"
|
||||||
|
archive: "/tmp/{{ project_name }}.tar.gz"
|
||||||
|
force: yes
|
||||||
|
update: yes
|
||||||
|
when: "project_name is defined"
|
||||||
|
|
||||||
|
- name: Create directory
|
||||||
|
file:
|
||||||
|
path: "{{ item }}"
|
||||||
|
state: directory
|
||||||
|
with_items: "{{ project_directory }}"
|
||||||
|
|
||||||
|
- name: Extract covas liquibase
|
||||||
|
unarchive:
|
||||||
|
src: "/tmp/{{ project_name }}.tar.gz"
|
||||||
|
dest: "{{ project_src }}/{{ project_name }}"
|
||||||
|
when: "project_name is defined"
|
||||||
|
|
||||||
|
|
||||||
|
- name: Template env file
|
||||||
|
template:
|
||||||
|
src: "{{ project_env }}"
|
||||||
|
dest: "{{ project_src }}/.env"
|
||||||
|
when: "project_env is defined"
|
||||||
|
|
||||||
|
- name: Copy docker compose server file
|
||||||
|
copy:
|
||||||
|
src: "{{ docker_compose_file }}"
|
||||||
|
dest: "{{ project_src }}/docker-compose.yml"
|
19
server/tasks/main.yml
Normal file
19
server/tasks/main.yml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
---
|
||||||
|
# tasks file for server
|
||||||
|
|
||||||
|
- name: Deploy services
|
||||||
|
ansible.builtin.import_tasks: deploy.yml
|
||||||
|
tags: ["deploy", "create"]
|
||||||
|
|
||||||
|
- name: Start services
|
||||||
|
ansible.builtin.import_tasks: start.yml
|
||||||
|
tags: ["deploy", "start"]
|
||||||
|
|
||||||
|
|
||||||
|
- name: stop services
|
||||||
|
ansible.builtin.import_tasks: stop.yml
|
||||||
|
tags: ["destroy", "stop"]
|
||||||
|
|
||||||
|
- name: Remove services
|
||||||
|
ansible.builtin.import_tasks: remove.yml
|
||||||
|
tags: ["destroy"]
|
@ -12,7 +12,7 @@
|
|||||||
debug:
|
debug:
|
||||||
var: output
|
var: output
|
||||||
|
|
||||||
- name: Remove project covas db
|
- name: Remove project
|
||||||
file:
|
file:
|
||||||
path: "{{ project_src }}"
|
path: "{{ project_src }}"
|
||||||
state: absent
|
state: absent
|
@ -14,14 +14,16 @@
|
|||||||
debug:
|
debug:
|
||||||
var: output
|
var: output
|
||||||
|
|
||||||
- name: Allow port registry
|
- name: "Allow port {{ item }}"
|
||||||
ansible.builtin.iptables:
|
ansible.builtin.iptables:
|
||||||
chain: INPUT
|
chain: INPUT
|
||||||
protocol: tcp
|
protocol: tcp
|
||||||
destination_port: 5000
|
destination_port: "{{ item }}"
|
||||||
jump: ACCEPT
|
jump: ACCEPT
|
||||||
state: present
|
state: present
|
||||||
vars:
|
vars:
|
||||||
ansible_become: yes
|
ansible_become: yes
|
||||||
ansible_become_method: sudo
|
ansible_become_method: sudo
|
||||||
ansible_become_password: "{{ sudo_password }}"
|
ansible_become_password: "{{ sudo_password }}"
|
||||||
|
with_items: "{{ ports_tcp }}"
|
||||||
|
|
@ -1,16 +1,19 @@
|
|||||||
# stop services db and redis
|
# stop services db and redis
|
||||||
|
|
||||||
- name: Disallow port postgresql
|
- name: Disallow port {{ item }}
|
||||||
ansible.builtin.iptables:
|
ansible.builtin.iptables:
|
||||||
chain: INPUT
|
chain: INPUT
|
||||||
protocol: tcp
|
protocol: tcp
|
||||||
destination_port: 5000
|
destination_port: "{{ item }}"
|
||||||
jump: ACCEPT
|
jump: ACCEPT
|
||||||
state: absent
|
state: absent
|
||||||
vars:
|
vars:
|
||||||
ansible_become: yes
|
ansible_become: yes
|
||||||
ansible_become_method: sudo
|
ansible_become_method: sudo
|
||||||
ansible_become_password: "{{ sudo_password }}"
|
ansible_become_password: "{{ sudo_password }}"
|
||||||
|
with_items: "{{ ports_tcp }}"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- name: Stopping existing service
|
- name: Stopping existing service
|
||||||
community.docker.docker_compose:
|
community.docker.docker_compose:
|
Loading…
x
Reference in New Issue
Block a user