diff --git a/continuousintegration/docker/ctafrontend/cc7/config/ctaeos/etc/xrd.cf.mgm b/continuousintegration/docker/ctafrontend/cc7/config/ctaeos/etc/xrd.cf.mgm index dffa5fbd15e82ebf14c6ed734f32a60c4a5fad1f..5323c1eabdad964960eef63d2b445905a6c24446 100644 --- a/continuousintegration/docker/ctafrontend/cc7/config/ctaeos/etc/xrd.cf.mgm +++ b/continuousintegration/docker/ctafrontend/cc7/config/ctaeos/etc/xrd.cf.mgm @@ -72,3 +72,6 @@ mgmofs.protowfresource /ctafrontend # Set the EOS space to be used as the destination of prepare requests mgmofs.prepare.dest.space default + +# Enable tape support +mgmofs.tapeenabled true diff --git a/continuousintegration/docker/ctafrontend/cc7/opt/run/bin/ctaeos-mgm.sh b/continuousintegration/docker/ctafrontend/cc7/opt/run/bin/ctaeos-mgm.sh index e5f251d6fe85ac3fec1088b38d0ac8df6525bf33..e192f2c195160ccb93a66a3464c84b73f512f5dd 100755 --- a/continuousintegration/docker/ctafrontend/cc7/opt/run/bin/ctaeos-mgm.sh +++ b/continuousintegration/docker/ctafrontend/cc7/opt/run/bin/ctaeos-mgm.sh @@ -65,6 +65,9 @@ EOS_TMP_DIR=/eos/${EOS_INSTANCE}/tmp echo "mgmofs.protowfendpoint ctafrontend:10955" >> /etc/xrd.cf.mgm echo "mgmofs.protowfresource /ctafrontend" >> /etc/xrd.cf.mgm +# Enable tape support +echo "mgmofs.tapeenabled true" >> /etc/xrd.cf.mgm + # Add configmap based configuration (initially Namespace) test -f /etc/config/eos/xrd.cf.mgm && cat /etc/config/eos/xrd.cf.mgm >> /etc/xrd.cf.mgm diff --git a/continuousintegration/orchestration/create_instance.sh b/continuousintegration/orchestration/create_instance.sh index 811f0fd582d5e4db85fd62c35e5e8d5b918996fe..6b5152e8bcc6bb76ab04a077db63fe56ed7ce1e0 100755 --- a/continuousintegration/orchestration/create_instance.sh +++ b/continuousintegration/orchestration/create_instance.sh @@ -329,6 +329,7 @@ kubectl --namespace=${instance} exec client -- kinit -kt /root/user1.keytab user # Add this for SSI prococol buffer workflow (xrootd >=4.8.2) #echo "mgmofs.protowfendpoint ctafrontend:10955" | kubectl --namespace=${instance} exec -i ctaeos -- bash -c "cat >> /etc/xrd.cf.mgm" #echo "mgmofs.protowfresource /ctafrontend" | kubectl --namespace=${instance} exec -i ctaeos -- bash -c "cat >> /etc/xrd.cf.mgm" +#echo "mgmofs.tapeenabled true" | kubectl --namespace=${instance} exec -i ctaeos -- bash -c "cat >> /etc/xrd.cf.mgm" # allow eos to start