Project

General

Profile

Feature #10684

Updated by Peter Amstutz over 7 years ago

Crunch-job includes the following setup logic to make up-to-date SSL certificates available inside the container: 

 <pre> 
         .q{&& if test -f /etc/ssl/certs/ca-certificates.crt ; then VOLUMES+=("--volume=/etc/ssl/certs/ca-certificates.crt:/etc/arvados/ca-certificates.crt") ; } 
         .q{elif test -f /etc/pki/tls/certs/ca-bundle.crt ; then VOLUMES+=("--volume=/etc/pki/tls/certs/ca-bundle.crt:/etc/arvados/ca-certificates.crt") ; fi }; 
 </pre> 

 We need an equivalent feature in crunch-run.    Possibly this is as simple as a @-v@ option that passes through to "runner.Binds". 
  

Back