From accb414f3e8fb3dcb270c3d3b09b0c98cbd959ca Mon Sep 17 00:00:00 2001 From: Dennis Marttinen Date: Mon, 7 Oct 2024 11:39:41 +0300 Subject: [PATCH] feat: expose HTTP and HTTPS ports in cPouta These ports will be used by Gateway API for ingress. Signed-off-by: Dennis Marttinen --- work/cpouta | 2 ++ 1 file changed, 2 insertions(+) diff --git a/work/cpouta b/work/cpouta index 815bc1c..7b83aa8 100755 --- a/work/cpouta +++ b/work/cpouta @@ -107,6 +107,8 @@ set -o pipefail # Configure firewall openstack security group create talos + openstack security group rule create --protocol tcp --dst-port 80 --description "HTTP" talos ||: + openstack security group rule create --protocol tcp --dst-port 443 --description "HTTPS" talos ||: openstack security group rule create --protocol tcp --dst-port 6443 --description "Kubernetes API" talos ||: openstack security group rule create --protocol tcp --dst-port 50000 --description "Talos API" talos ||: