diff --git a/continuousintegration/docker/ctafrontend/cc7/opt/run/bin/eos_configure_preprod.sh b/continuousintegration/docker/ctafrontend/cc7/opt/run/bin/eos_configure_preprod.sh index 1c7966ee40cbcb9f1bc89d0b4098e4f96c39c864..db66af2eab90a173bb573dee454c33703fe20270 100755 --- a/continuousintegration/docker/ctafrontend/cc7/opt/run/bin/eos_configure_preprod.sh +++ b/continuousintegration/docker/ctafrontend/cc7/opt/run/bin/eos_configure_preprod.sh @@ -10,7 +10,6 @@ eos attr set CTA_TapeFsId=65535 ${PREPROD_DIR} eos attr set sys.workflow.sync::openw.default="proto:ctafrontend:10955 ctafrontend" ${PREPROD_DIR} eos attr set sys.workflow.closew.default="proto:ctafrontend:10955 ctafrontend" ${PREPROD_DIR} -eos attr set sys.workflow.closew.CTA_retrieve="proto:ctafrontend:10955 ctafrontend" ${PREPROD_DIR} eos attr set sys.workflow.archived.default="proto:ctafrontend:10955 ctafrontend" ${PREPROD_DIR} eos attr set sys.workflow.sync::prepare.default="proto:ctafrontend:10955 ctafrontend" ${PREPROD_DIR} eos attr set sys.workflow.sync::delete.default="proto:ctafrontend:10955 ctafrontend" ${PREPROD_DIR} diff --git a/continuousintegration/orchestration/create_instance.sh b/continuousintegration/orchestration/create_instance.sh index 855eb6ebbb0e37c417c4488632dc51fe6878d183..a2b0fef31eec05ee7e7601156d1a2b20dd18caa8 100755 --- a/continuousintegration/orchestration/create_instance.sh +++ b/continuousintegration/orchestration/create_instance.sh @@ -300,10 +300,6 @@ echo OK # Set the workflow rules for archiving, creating tape file replicas in the EOS namespace, retrieving # files from tape and deleting files. # -# The closew.CTA_retrieve workflow prevents the default workflow from receiving the closew event, as -# we don't want to trigger the action of copying the retrived disk file to tape again. The -# closew.CTA_retrieve workflow sets the CTA_retrieved_timestamp attribute. -# # The FQDN can be set as follows: # CTA_ENDPOINT=ctafrontend.${instance}.svc.cluster.local:10955 # @@ -312,7 +308,7 @@ CTA_ENDPOINT=ctafrontend:10955 echo "Setting workflows in namespace ${instance} pod ctaeos:" CTA_WF_DIR=/eos/${EOSINSTANCE}/proc/cta/workflow -for WORKFLOW in sync::openw.default closew.default archived.default sync::prepare.default closew.CTA_retrieve sync::delete.default +for WORKFLOW in sync::openw.default closew.default archived.default sync::prepare.default sync::delete.default do echo "eos attr set sys.workflow.${WORKFLOW}=\"proto:${CTA_ENDPOINT} ctafrontend\" ${CTA_WF_DIR}" kubectl --namespace=${instance} exec ctaeos -- bash -c "eos attr set sys.workflow.${WORKFLOW}=\"proto:${CTA_ENDPOINT} ctafrontend\" ${CTA_WF_DIR}"