diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..28884c3 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,13 @@ +{ + "cSpell.words": [ + "dontlognull", + "dport", + "httplog", + "maxconn", + "nologin", + "redispatch", + "sess", + "tcplog", + "userlist" + ] +} \ No newline at end of file diff --git a/doc/puppet_classes/haproxy_cd_3A_3Afirewall_3A_3Aiptables.html b/doc/puppet_classes/haproxy_cd_3A_3Afirewall_3A_3Aiptables.html index e86020f..586b836 100644 --- a/doc/puppet_classes/haproxy_cd_3A_3Afirewall_3A_3Aiptables.html +++ b/doc/puppet_classes/haproxy_cd_3A_3Afirewall_3A_3Aiptables.html @@ -117,7 +117,13 @@ 19 20 21 -22 +22 +23 +24 +25 +26 +27 +28
# File 'manifests/firewall/iptables.pp', line 6
@@ -137,6 +143,12 @@ 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',
+    }
   }
 }
diff --git a/manifests/firewall/iptables.pp b/manifests/firewall/iptables.pp index d5e41cc..30626e7 100644 --- a/manifests/firewall/iptables.pp +++ b/manifests/firewall/iptables.pp @@ -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', + } } }