Merge branch 'jenkins-build-94' into 'master'

Auto-merge for build 94

See merge request puppet/puppet_cd!90
This commit is contained in:
2025-10-28 12:39:19 +00:00
2 changed files with 25 additions and 3 deletions

View File

@@ -994,6 +994,24 @@
</li> </li>
<li>
<span class='name'>pt_soft_write_failure</span>
<span class='type'>(<tt>Boolean</tt>)</span>
<em class="default">(defaults to: <tt>false</tt>)</em>
&mdash;
<div class='inline'>
<p>whether to allow soft_write_failure</p>
</div>
</li>
<li> <li>
<span class='name'>pt_puppetdb_pkg</span> <span class='name'>pt_puppetdb_pkg</span>
@@ -1018,7 +1036,6 @@
<pre class="lines"> <pre class="lines">
58
59 59
60 60
61 61
@@ -1131,10 +1148,12 @@
168 168
169 169
170 170
171</pre> 171
172
173</pre>
</td> </td>
<td> <td>
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 58</span> <pre class="code"><span class="info file"># File 'manifests/params.pp', line 59</span>
class puppet_cd::params ( class puppet_cd::params (
@@ -1191,6 +1210,7 @@ class puppet_cd::params (
# puppetdb # puppetdb
String $pt_ssl_port = &#39;8081&#39;, String $pt_ssl_port = &#39;8081&#39;,
Boolean $pt_soft_write_failure = false,
# r10k # r10k
Boolean $pt_use_r10k = false, Boolean $pt_use_r10k = false,

View File

@@ -54,6 +54,7 @@
# @param [Boolean] pt_manage_user whether to manage the puppet user # @param [Boolean] pt_manage_user whether to manage the puppet user
# @param [String] pt_r10k_webhook_port the port for the webhook listener # @param [String] pt_r10k_webhook_port the port for the webhook listener
# @param [String] pt_ssl_port the port for the puppetdb ssl port # @param [String] pt_ssl_port the port for the puppetdb ssl port
# @param [Boolean] pt_soft_write_failure whether to allow soft_write_failure
############################################################################### ###############################################################################
class puppet_cd::params ( class puppet_cd::params (
@@ -110,6 +111,7 @@ class puppet_cd::params (
# puppetdb # puppetdb
String $pt_ssl_port = '8081', String $pt_ssl_port = '8081',
Boolean $pt_soft_write_failure = false,
# r10k # r10k
Boolean $pt_use_r10k = false, Boolean $pt_use_r10k = false,