this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(nixos): open HTTP and HTTPS ports

Khue Doan 2df6e9a8 838678a1

+7 -1
+3
infra/_modules/nixos/profiles/k3s-agent.nix
··· 6 6 # https://docs.k3s.io/installation/requirements#inbound-rules-for-k3s-nodes 7 7 allowedTCPPorts = [ 8 8 10250 # Kubelet metrics 9 + # TODO probably unify with the agent config? 10 + 80 # HTTP 11 + 443 # HTTPS 9 12 ]; 10 13 allowedUDPPorts = [ 11 14 51820 # Flannel Wireguard with IPv4
+4 -1
infra/_modules/nixos/profiles/k3s-server.nix
··· 5 5 firewall = { 6 6 # https://docs.k3s.io/installation/requirements#inbound-rules-for-k3s-nodes 7 7 allowedTCPPorts = [ 8 - 6443 # K3s supervisor and Kubernetes API Server 8 + 6443 # K3s supervisor and Kubernetes API Server 9 9 10250 # Kubelet metrics 10 + # TODO probably unify with the agent config? 11 + 80 # HTTP 12 + 443 # HTTPS 10 13 ]; 11 14 allowedTCPPortRanges = [ 12 15 # Required only for HA with embedded etcd