damp-dress-71748
08/04/2022, 1:04 PMfreezing-airplane-30363
08/04/2022, 1:53 PMdamp-dress-71748
08/04/2022, 1:54 PMfreezing-airplane-30363
08/04/2022, 1:55 PMsudo sysctl -w net.ipv4.ip_unprivileged_port_start=443
and then you should be able access ingress and other services too directly on https://localhost:443 or on the ports they are running on (but not bellow 443)damp-dress-71748
08/04/2022, 1:56 PMfreezing-airplane-30363
08/04/2022, 1:57 PMsudo ufw disable
?damp-dress-71748
08/04/2022, 1:59 PMfreezing-airplane-30363
08/04/2022, 2:08 PMdamp-dress-71748
08/04/2022, 2:09 PMfreezing-airplane-30363
08/04/2022, 2:09 PMkubectl create deployment nginx --image=nginx --port=80 --replicas=1
kubectl expose deployment nginx --type=NodePort --port=80
kubectl get svc nginx -o jsonpath='{.spec.ports[0].nodePort}'
> 30449
wget <http://localhost:30449>