X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/0aa01993bc8533d417dc510b1860a4a583e093b4..b1aa6c85c3db947f0963b1bddb2784c115f5c97d:/services/api/config/application.default.yml diff --git a/services/api/config/application.default.yml b/services/api/config/application.default.yml index bb1355d030..cae6bbdf17 100644 --- a/services/api/config/application.default.yml +++ b/services/api/config/application.default.yml @@ -282,6 +282,17 @@ common: # Docker image to be used when none found in runtime_constraints of a job default_docker_image_for_jobs: false + # List of supported Docker Registry image formats that compute nodes + # are able to use. `arv keep docker` will error out if a user tries + # to store an image with an unsupported format. Use an empty array + # to skip the compatibility check (and display a warning message to + # that effect). + # + # Example for sites running docker < 1.10: ["v1"] + # Example for sites running docker >= 1.10: ["v2"] + # Example for disabling check: [] + docker_image_formats: ["v2"] + # :none or :slurm_immediate crunch_job_wrapper: :none @@ -452,3 +463,4 @@ test: git_internal_dir: <%= Rails.root.join 'tmp', 'internal.git' %> websocket_address: <% if ENV['ARVADOS_TEST_EXPERIMENTAL_WS'] %>"wss://0.0.0.0:<%= ENV['ARVADOS_TEST_WSS_PORT'] %>/websocket"<% else %>false<% end %> trash_sweep_interval: -1 + docker_image_formats: ["v1"]