diff --git a/smartgears/dataminer_app/tasks/install-gcube-key.yml b/smartgears/dataminer_app/tasks/install-gcube-key.yml index b40f11f8..b4c9e2dc 100644 --- a/smartgears/dataminer_app/tasks/install-gcube-key.yml +++ b/smartgears/dataminer_app/tasks/install-gcube-key.yml @@ -1,65 +1,44 @@ --- - block: - - name: Install the production gcube keys + - name: Install the production gcube keys into the dataminer webapp get_url: url={{ item.url }} dest={{ smartgears_instance_path }}/webapps/{{ dataminer_wps_name }}/ecocfg/PARALLEL_PROCESSING/{{ item.name }} owner={{ smartgears_user }} group={{ smartgears_user }} mode=0600 - with_items: - - '{{ gcube_prod_key_1 }}' - - '{{ gcube_prod_key_2 }}' - - '{{ gcube_prod_key_3 }}' - - '{{ gcube_prod_key_4 }}' - - '{{ gcube_prod_key_5 }}' - - '{{ gcube_prod_key_6 }}' - - '{{ gcube_prod_key_7 }}' - - '{{ gcube_prod_key_8 }}' - - '{{ gcube_prod_key_9 }}' + with_items: '{{ gcube_production_security_keys }}' notify: Restart smartgears when: install_gcube_prod_key - - name: Remove the production gcube keys + - name: Remove the production gcube keys from the dataminer webapp file: dest={{ smartgears_instance_path }}/webapps/{{ dataminer_wps_name }}/ecocfg/PARALLEL_PROCESSIN/{{ item.name }} state=absent - with_items: - - '{{ gcube_prod_key_1 }}' - - '{{ gcube_prod_key_2 }}' - - '{{ gcube_prod_key_3 }}' - - '{{ gcube_prod_key_4 }}' - - '{{ gcube_prod_key_5 }}' - - '{{ gcube_prod_key_6 }}' - - '{{ gcube_prod_key_7 }}' - - '{{ gcube_prod_key_8 }}' - - '{{ gcube_prod_key_9 }}' + with_items: '{{ gcube_production_security_keys }}' notify: Restart smartgears when: not install_gcube_prod_key - - name: Install the devel gcube keys + - name: Install the devel gcube keys into the dataminer webapp get_url: url={{ item.url }} dest={{ smartgears_instance_path }}/webapps/{{ dataminer_wps_name }}/ecocfg/PARALLEL_PROCESSING/{{ item.name }} owner={{ smartgears_user }} group={{ smartgears_user }} mode=0600 - with_items: - - '{{ gcube_dev_key_1 }}' - - '{{ gcube_dev_key_2 }}' - - '{{ gcube_dev_key_3 }}' + with_items: '{{ gcube_dev_security_keys }}' notify: Restart smartgears when: install_gcube_dev_key - - name: Remove the devel gcube keys + - name: Remove the devel gcube keys from the dataminer webapp file: dest={{ smartgears_instance_path }}/webapps/{{ dataminer_wps_name }}/ecocfg/PARALLEL_PROCESSING/{{ item.name }} state=absent - with_items: - - '{{ gcube_dev_key_1 }}' - - '{{ gcube_dev_key_2 }}' - - '{{ gcube_dev_key_3 }}' + with_items: '{{ gcube_dev_security_keys }}' notify: Restart smartgears when: not install_gcube_dev_key - - name: Install the preprod gcube keys + - name: Install the preprod gcube keys into the dataminer webapp get_url: url={{ item.url }} dest={{ smartgears_instance_path }}/webapps/{{ dataminer_wps_name }}/ecocfg/PARALLEL_PROCESSING/{{ item.name }} owner={{ smartgears_user }} group={{ smartgears_user }} mode=0600 - with_items: - - '{{ gcube_pre_key_1 }}' - - '{{ gcube_dev_key_1 }}' + with_items: '{{ gcube_preprod_security_keys }}' notify: Restart smartgears when: install_gcube_preprod_key - - name: Remove the preprod gcube keys + - name: Remove the preprod gcube keys from the dataminer webapp file: dest={{ smartgears_instance_path }}/webapps/{{ dataminer_wps_name }}/ecocfg/PARALLEL_PROCESSING/{{ item.name }} state=absent - with_items: - - '{{ gcube_pre_key_1 }}' + with_items: '{{ gcube_preprod_security_keys }}' + notify: Restart smartgears + when: not install_gcube_preprod_key + + - name: Remove obsolete or expired gcube keys from the dataminer webapp + file: dest={{ smartgears_instance_path }}/webapps/{{ dataminer_wps_name }}/ecocfg/PARALLEL_PROCESSING/{{ item.name }} state=absent + with_items: '{{ gcube_old_security_keys }}' notify: Restart smartgears when: not install_gcube_preprod_key diff --git a/smartgears/smartgears/tasks/install-gcube-keys.yml b/smartgears/smartgears/tasks/install-gcube-keys.yml index 6986843f..0e65d18e 100644 --- a/smartgears/smartgears/tasks/install-gcube-keys.yml +++ b/smartgears/smartgears/tasks/install-gcube-keys.yml @@ -2,67 +2,45 @@ - block: - name: Install the production gcube keys get_url: url={{ item.url }} dest=/{{ gcube_tomcat_lib_dir }}/{{ item.name }} owner={{ smartgears_user }} group={{ d4science_user }} mode=0600 - with_items: - - '{{ gcube_prod_key_1 }}' - - '{{ gcube_prod_key_2 }}' - - '{{ gcube_prod_key_3 }}' - - '{{ gcube_prod_key_4 }}' - - '{{ gcube_prod_key_5 }}' - - '{{ gcube_prod_key_6 }}' - - '{{ gcube_prod_key_7 }}' - - '{{ gcube_prod_key_8 }}' - - '{{ gcube_prod_key_9 }}' + with_items: '{{ gcube_production_security_keys }}' notify: Restart smartgears when: install_gcube_prod_key - name: Remove the production gcube keys file: dest=/{{ gcube_tomcat_lib_dir }}/{{ item.name }} state=absent - with_items: - - '{{ gcube_prod_key_1 }}' - - '{{ gcube_prod_key_2 }}' - - '{{ gcube_prod_key_3 }}' - - '{{ gcube_prod_key_4 }}' - - '{{ gcube_prod_key_5 }}' - - '{{ gcube_prod_key_6 }}' - - '{{ gcube_prod_key_7 }}' - - '{{ gcube_prod_key_8 }}' - - '{{ gcube_prod_key_9 }}' + with_items: '{{ gcube_production_security_keys }}' notify: Restart smartgears when: not install_gcube_prod_key - name: Install the devel gcube keys get_url: url={{ item.url }} dest=/{{ gcube_tomcat_lib_dir }}/{{ item.name }} owner={{ smartgears_user }} group={{ d4science_user }} mode=0600 - with_items: - - '{{ gcube_dev_key_1 }}' - - '{{ gcube_dev_key_2 }}' - - '{{ gcube_dev_key_3 }}' + with_items: '{{ gcube_dev_security_keys }}' notify: Restart smartgears when: install_gcube_dev_key - name: Remove the devel gcube keys file: dest=/{{ gcube_tomcat_lib_dir }}/{{ item.name }} state=absent - with_items: - - '{{ gcube_dev_key_1 }}' - - '{{ gcube_dev_key_2 }}' - - '{{ gcube_dev_key_3 }}' + with_items: '{{ gcube_dev_security_keys }}' notify: Restart smartgears when: not install_gcube_dev_key - name: Install the preprod gcube keys get_url: url={{ item.url }} dest=/{{ gcube_tomcat_lib_dir }}/{{ item.name }} owner={{ smartgears_user }} group={{ smartgears_user }} mode=0600 - with_items: - - '{{ gcube_pre_key_1 }}' - - '{{ gcube_dev_key_1 }}' + with_items: '{{ gcube_preprod_security_keys }}' notify: Restart smartgears when: install_gcube_preprod_key - name: Remove the preprod gcube keys file: dest=/{{ gcube_tomcat_lib_dir }}/{{ item.name }} state=absent - with_items: - - '{{ gcube_pre_key_1 }}' + with_items: '{{ gcube_preprod_security_keys }}' notify: Restart smartgears when: not install_gcube_preprod_key + - name: Remove the obsolete or expired gcube keys + file: dest=/{{ gcube_tomcat_lib_dir }}/{{ item.name }} state=absent + with_items: '{{ gcube_old_security_keys }}' + notify: Restart smartgears + become: True become_user: '{{ smartgears_user }}' tags: gcube_key diff --git a/smartgears/smartgears_egi_image/templates/get-gcube-keys.sh.j2 b/smartgears/smartgears_egi_image/templates/get-gcube-keys.sh.j2 index f4b82764..5b10804b 100644 --- a/smartgears/smartgears_egi_image/templates/get-gcube-keys.sh.j2 +++ b/smartgears/smartgears_egi_image/templates/get-gcube-keys.sh.j2 @@ -33,7 +33,6 @@ elif [ "$INFRA_NAME" == "d4science.research-infrastructures.eu" ] ; then wget {{ gcube_pkey_4 }} --no-check-certificate -o $LOG_FILE.D4Research -O D4Research.gcubekey wget {{ gcube_pkey_3 }} --no-check-certificate -o $LOG_FILE.SoBigData -O SoBigData.gcubekey wget {{ gcube_pkey_3 }} --no-check-certificate -o $LOG_FILE.OpenAIRE -O OpenAIRE.gcubekey - wget {{ gcube_pkey_3 }} --no-check-certificate -o $LOG_FILE.Edison -O Edison.gcubekey wget {{ gcube_pkey_3 }} --no-check-certificate -o $LOG_FILE.SmartArea -O SmartArea.gcubekey chmod 400 $SM_LIB_DIR/*.gcubekey else