Add paths bind mount option names to match zuul

We just made this change in zuul v3 itself, update the puppet to expose
it.

Change-Id: I448f6710b54d0e1d0955b7c657a84a0fcc8b405f
This commit is contained in:
Monty Taylor 2017-07-28 16:36:22 -05:00
parent a98e898002
commit 392bc6a954
No known key found for this signature in database
GPG Key ID: 7BAE94BC7141A594
2 changed files with 8 additions and 0 deletions

View File

@ -72,6 +72,10 @@ class zuul (
$trusted_rw_dirs = [],
$untrusted_ro_dirs = [],
$untrusted_rw_dirs = [],
$trusted_ro_paths = [],
$trusted_rw_paths = [],
$untrusted_ro_paths = [],
$untrusted_rw_paths = [],
$disk_limit_per_job = '',
$python_version = 2,
$zuulv3 = false,

View File

@ -55,6 +55,10 @@ trusted_ro_dirs=<%= @trusted_ro_dirs.join(':') %>
trusted_rw_dirs=<%= @trusted_rw_dirs.join(':') %>
untrusted_ro_dirs=<%= @untrusted_ro_dirs.join(':') %>
untrusted_rw_dirs=<%= @untrusted_rw_dirs.join(':') %>
trusted_ro_paths=<%= @trusted_ro_paths.join(':') %>
trusted_rw_paths=<%= @trusted_rw_paths.join(':') %>
untrusted_ro_paths=<%= @untrusted_ro_paths.join(':') %>
untrusted_rw_paths=<%= @untrusted_rw_paths.join(':') %>
<% if @disk_limit_per_job != "" -%>
disk_limit_per_job=<%= @disk_limit_per_job %>
<% end -%>