Add a role to manage the sis-geotk-plugin (data transfer).

This commit is contained in:
Andrea Dell'Amico 2017-09-14 17:23:51 +02:00
parent ea49eb993a
commit fb99dba454
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,11 @@
---
sis_geotk_dt_plugin_install: False
sis_geotk_dt_plugin_name: sis-geotk-plugin
sis_geotk_dt_plugin_group_id : org.gcube.data.transfer
sis_geotk_dt_plugin_artifact_id : '{{ sis_geotk_dt_plugin_name }}'
sis_geotk_dt_plugin_version : latest
sis_geotk_dt_plugin_extension: jar
sis_geotk_dt_plugin_classifier: jar-with-dependencies
sis_geotk_dt_plugin_file: '{{ sis_geotk_dt_plugin_name }}-{{ sis_geotk_dt_plugin_version }}-jar-with-dependencies.{{ sis_geotk_dt_plugin_extension }}'

View File

@ -0,0 +1,20 @@
---
- block:
- name: Get the Sis geotk data transfer plugin and install it inside the smart executor
maven_artifact: artifact_id={{ sis_geotk_dt_plugin_name }} version={{ sis_geotk_dt_plugin_version | default(omit) }} group_id={{ sis_geotk_dt_plugin_group_id }} extension={{ sis_geotk_dt_plugin_extension | default('war') }} repository_url={{ smartgears_global_base_url }} classifier={{ sis_geotk_dt_plugin_classifier }} dest={{ smartgears_downloads_dir }}/{{ sis_geotk_dt_plugin_file }}
register: sis_geotk_download
- name: Remove the old Sis geotk data transfer plugin
shell: rm -f {{ smartgears_instance_path }}/webapps/{{ data_trasfer_service_name }}/WEB-INF/lib/{{ sis_geotk_dt_plugin_name }}-*-jar-with-dependencies.jar
when: (sis_geotk_download | changed)
tags: [ 'smartgears', 'sis_geotk', 'tomcat' ]
- name: Copy the Sis geotk data transfer plugin to its final destination
copy: src={{ smartgears_downloads_dir }}/{{ sis_geotk_dt_plugin_file }} dest={{ smartgears_instance_path }}/webapps/{{ smart_executor_name }}/WEB-INF/lib/{{ sis_geotk_dt_plugin_file }} remote_src=yes force=yes
notify: Restart smartgears
become: True
become_user: '{{ smartgears_user }}'
when: sis_geotk_dt_plugin_install
tags: [ 'smartgears', 'sis_geotk', 'tomcat' ]