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

Auto-merge for build 17

See merge request puppet/haproxy_cd!4
This commit is contained in:
Jenkins
2026-06-07 12:35:17 +00:00
3 changed files with 32 additions and 1 deletions

13
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,13 @@
{
"cSpell.words": [
"dontlognull",
"dport",
"httplog",
"maxconn",
"nologin",
"redispatch",
"sess",
"tcplog",
"userlist"
]
}

View File

@@ -117,7 +117,13 @@
19
20
21
22</pre>
22
23
24
25
26
27
28</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'manifests/firewall/iptables.pp', line 6</span>
@@ -137,6 +143,12 @@ class haproxy_cd::firewall::iptables (
dport =&gt; $hy_https_port,
jump =&gt; &#39;accept&#39;,
}
firewall { &quot;${hy_fw_order_no}9000 tcp port minio-api&quot;:
proto =&gt; &#39;tcp&#39;,
dport =&gt; &#39;9000&#39;,
jump =&gt; &#39;accept&#39;,
}
}
}</pre>
</td>

View File

@@ -18,5 +18,11 @@ class haproxy_cd::firewall::iptables (
dport => $hy_https_port,
jump => 'accept',
}
firewall { "${hy_fw_order_no}9000 tcp port minio-api":
proto => 'tcp',
dport => '9000',
jump => 'accept',
}
}
}