recommit for updates in build 30

This commit is contained in:
Jenkins ConfDroid
2025-02-24 13:37:48 +01:00
parent 0ae5d7e0f3
commit e2c4403674
9 changed files with 97 additions and 15 deletions

View File

@@ -103,6 +103,11 @@
</li> </li>
<li>
<span class='object_link'><a href="puppet_classes/cd_alloy_3A_3Aparams.html" title="puppet_classes::cd_alloy::params (puppet_class)">cd_alloy::params</a></span>
</li>
</ul> </ul>
</ul> </ul>

View File

@@ -85,6 +85,13 @@
</li> </li>
<li id="object_puppet_classes::cd_alloy::params" class="even">
<div class="item">
<span class='object_link'><a href="puppet_classes/cd_alloy_3A_3Aparams.html" title="puppet_classes::cd_alloy::params (puppet_class)">cd_alloy::params</a></span>
</div>
</li>
</ul> </ul>
</div> </div>

View File

@@ -64,7 +64,7 @@
<dl> <dl>
<dt>Inherits:</dt> <dt>Inherits:</dt>
<dd>cd_alloy::params</dd> <dd><span class='object_link'><a href="cd_alloy_3A_3Aparams.html" title="puppet_classes::cd_alloy::params (puppet_class)">cd_alloy::params</a></span></dd>
</dl> </dl>

View File

@@ -64,7 +64,7 @@
<dl> <dl>
<dt>Inherits:</dt> <dt>Inherits:</dt>
<dd>cd_alloy::params</dd> <dd><span class='object_link'><a href="cd_alloy_3A_3Aparams.html" title="puppet_classes::cd_alloy::params (puppet_class)">cd_alloy::params</a></span></dd>
</dl> </dl>

View File

@@ -64,7 +64,7 @@
<dl> <dl>
<dt>Inherits:</dt> <dt>Inherits:</dt>
<dd>cd_alloy::params</dd> <dd><span class='object_link'><a href="cd_alloy_3A_3Aparams.html" title="puppet_classes::cd_alloy::params (puppet_class)">cd_alloy::params</a></span></dd>
</dl> </dl>

View File

@@ -64,7 +64,7 @@
<dl> <dl>
<dt>Inherits:</dt> <dt>Inherits:</dt>
<dd>cd_alloy::params</dd> <dd><span class='object_link'><a href="cd_alloy_3A_3Aparams.html" title="puppet_classes::cd_alloy::params (puppet_class)">cd_alloy::params</a></span></dd>
</dl> </dl>

View File

@@ -64,7 +64,7 @@
<dl> <dl>
<dt>Inherits:</dt> <dt>Inherits:</dt>
<dd>cd_alloy::params</dd> <dd><span class='object_link'><a href="cd_alloy_3A_3Aparams.html" title="puppet_classes::cd_alloy::params (puppet_class)">cd_alloy::params</a></span></dd>
</dl> </dl>

View File

@@ -64,7 +64,7 @@
<dl> <dl>
<dt>Inherits:</dt> <dt>Inherits:</dt>
<dd>cd_alloy::params</dd> <dd><span class='object_link'><a href="cd_alloy_3A_3Aparams.html" title="puppet_classes::cd_alloy::params (puppet_class)">cd_alloy::params</a></span></dd>
</dl> </dl>

View File

@@ -140,6 +140,60 @@
&mdash; &mdash;
<div class='inline'> <div class='inline'>
<p>&#39;latest&#39; or &#39;present&#39;</p> <p>&#39;latest&#39; or &#39;present&#39;</p>
</div>
</li>
<li>
<span class='name'>ay_loki_url</span>
<span class='type'>(<tt>string</tt>)</span>
<em class="default">(defaults to: <tt>&#39;https://loki.example.net/loki/api/v1/push&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>the url where alloy will send logs to.</p>
</div>
</li>
<li>
<span class='name'>ay_loki_username</span>
<span class='type'>(<tt>string</tt>)</span>
<em class="default">(defaults to: <tt>&#39;&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>the username to logon to loki</p>
</div>
</li>
<li>
<span class='name'>ay_loki_userpass</span>
<span class='type'>(<tt>string</tt>)</span>
<em class="default">(defaults to: <tt>&#39;&#39;</tt>)</em>
&mdash;
<div class='inline'>
<p>the password to logon to loki</p>
</div> </div>
</li> </li>
@@ -155,9 +209,6 @@
<pre class="lines"> <pre class="lines">
8
9
10
11 11
12 12
13 13
@@ -172,23 +223,42 @@
22 22
23 23
24 24
25</pre> 25
26
27
28
29
30
31
32
33
34
35
36</pre>
</td> </td>
<td> <td>
<pre class="code"><span class="info file"># File 'manifests/params.pp', line 8</span> <pre class="code"><span class="info file"># File 'manifests/params.pp', line 11</span>
class cd_alloy::params ( class cd_alloy::params (
$reqpackages = &#39;alloy&#39;, $reqpackages = &#39;alloy&#39;,
$pkg_ensure = &#39;latest&#39;, $pkg_ensure = &#39;latest&#39;,
# loki
$ay_loki_url = &#39;https://loki.example.net/loki/api/v1/push&#39;,
$ay_loki_username = &#39;&#39;,
$ay_loki_userpass = &#39;&#39;,
) { ) {
# service # service
$ay_service = &#39;alloy&#39; $ay_service = &#39;alloy&#39;
# dirs # dirs
$ay_main_dir = &#39;/etc/alloy&#39; $ay_main_dir = &#39;/etc/alloy&#39;
# files
$ay_main_file = &quot;$(ay_main_dir)/config.alloy&quot;
# includes must be last # includes must be last