2016-06-13 16:24:30 +02:00
|
|
|
---
|
|
|
|
- name: Install the production gcube keys
|
|
|
|
get_url: url={{ item.url }} dest={{ smartgears_instance_path }}/webapps/{{ dataminer_52north_webapp_name }}/ecocfg/PARALLEL_PROCESSING owner={{ smartgears_user }} group={{ smartgears_user }} mode=0400
|
|
|
|
with_items:
|
|
|
|
- '{{ gcube_prod_key_1 }}'
|
|
|
|
- '{{ gcube_prod_key_2 }}'
|
|
|
|
- '{{ gcube_prod_key_3 }}'
|
|
|
|
notify: Restart smartgears
|
|
|
|
when: install_gcube_prod_key
|
|
|
|
tags: [ 'dataminer', 'gcube_key' ]
|
|
|
|
|
|
|
|
- name: Install the devel gcube keys
|
|
|
|
get_url: url={{ item.url }} dest={{ smartgears_instance_path }}/webapps/{{ dataminer_52north_webapp_name }}/ecocfg/PARALLEL_PROCESSING owner={{ smartgears_user }} group={{ smartgears_user }} mode=0400
|
|
|
|
with_items:
|
|
|
|
- '{{ gcube_dev_key_1 }}'
|
|
|
|
- '{{ gcube_dev_key_2 }}'
|
|
|
|
- '{{ gcube_dev_key_3 }}'
|
|
|
|
notify: Restart smartgears
|
|
|
|
when: install_gcube_dev_key
|
|
|
|
tags: [ 'dataminer', 'gcube_key' ]
|
2016-07-01 12:32:24 +02:00
|
|
|
|
|
|
|
- name: Install the preprod gcube keys
|
|
|
|
get_url: url={{ item.url }} dest={{ smartgears_instance_path }}/webapps/{{ dataminer_52north_webapp_name }}/ecocfg/PARALLEL_PROCESSING owner={{ smartgears_user }} group={{ smartgears_user }} mode=0400
|
|
|
|
with_items:
|
|
|
|
- '{{ gcube_pre_key_1 }}'
|
|
|
|
notify: Restart smartgears
|
|
|
|
when: install_gcube_preprod_key
|
|
|
|
tags: [ 'dataminer', 'gcube_key' ]
|