Skip to content

Commit

Permalink
Use port 443 for API server (#541)
Browse files Browse the repository at this point in the history
* Use port 443 for API server

* Update CHANGELOG.md
  • Loading branch information
paurosello authored Mar 6, 2024
1 parent edaf378 commit 8d146ec
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Fix allow list API port 443.

## [0.64.1] - 2024-02-29

### Changed
Expand Down
4 changes: 2 additions & 2 deletions helm/cluster-aws/templates/_aws_cluster.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ spec:
ingressRules:
- description: "Kubernetes API"
protocol: tcp
fromPort: 6443
toPort: 6443
fromPort: 443
toPort: 443
# We append the Giant Swarm VPN IPs (internal link: https://github.com/giantswarm/vpn/tree/master/hosts_inventory, https://intranet.giantswarm.io/docs/support-and-ops/ops-recipes/tc_api_whitelisting/)
cidrBlocks: {{- toYaml ((concat .Values.global.controlPlane.loadBalancerIngressAllowCidrBlocks (list "95.179.153.65/32" "185.102.95.187/32")) | uniq) | nindent 6 }}
{{- end }}
Expand Down

0 comments on commit 8d146ec

Please sign in to comment.