Skip to content

Commit

Permalink
fix quoting of port in linodeFirewall
Browse files Browse the repository at this point in the history
  • Loading branch information
eljohnson92 committed Oct 3, 2024
1 parent 921fa23 commit 8cb7af6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion templates/flavors/k3s/dns-loadbalancing/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ patches:
- 0.0.0.0/0
ipv6:
- ::/0
ports: "${APISERVER_PORT:=6443}"
ports: ${APISERVER_PORT:="6443"}
protocol: TCP
label: inbound-api-server
description: accept all api server related traffic from nodebalancers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ patches:
- 0.0.0.0/0
ipv6:
- ::/0
ports: "${APISERVER_PORT:=6443}"
ports: ${APISERVER_PORT:="6443"}
protocol: TCP
label: inbound-api-server
description: accept all api server related traffic from nodebalancers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ patches:
- 0.0.0.0/0
ipv6:
- ::/0
ports: "${APISERVER_PORT:=6443}"
ports: ${APISERVER_PORT:="6443"}
protocol: TCP
label: inbound-api-server
description: accept all api server related traffic from nodebalancers
Expand Down
2 changes: 1 addition & 1 deletion templates/infra/linodeFirewall.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ spec:
addresses:
ipv4:
- 192.168.255.0/24
ports: "${APISERVER_PORT:=6443}"
ports: ${APISERVER_PORT:="6443"}
protocol: TCP
label: inbound-api-server
description: accept all api server related traffic from nodebalancers
Expand Down

0 comments on commit 8cb7af6

Please sign in to comment.