Skip to content

Commit

Permalink
Add required steps for installing enterprise on Openshift v4.16+ on AWS
Browse files Browse the repository at this point in the history
  • Loading branch information
vara2504 committed Jan 2, 2025
1 parent 3fc23fe commit e8ad9e7
Showing 1 changed file with 16 additions and 17 deletions.
33 changes: 16 additions & 17 deletions calico-enterprise/_includes/components/InstallOpenShift.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,23 +84,22 @@ export default function InstallOpenShift(props) {
<p>For OpenShift <b>v4.16 or newer</b> on <b>AWS</b>, configure AWS security groups to allow BGP, typha and IP-in-IP encapsulation traffic by editing the OpenShift cluster-api manifests.</p>
<p>Edit <code>spec.network.cni.cniIngressRules</code> in the <code>cluster-api/02_infra-cluster.yaml</code> file to add </p>
<CodeBlock language='bash'>
{`
cniIngressRules:
(...)
- description: BGP (calico enterprise)
fromPort: 179
protocol: tcp
toPort: 179
- description: IP-in-IP (calico enterprise)
fromPort: -1
protocol: "4"
toPort: -1
- description: Typha (calico enterprise)
fromPort: 5473
protocol: tcp
toPort: 5473
`}
</CodeBlock>
{`cniIngressRules:
(...)
- description: BGP (calico enterprise)
fromPort: 179
protocol: tcp
toPort: 179
- description: IP-in-IP (calico enterprise)
fromPort: -1
protocol: "4"
toPort: -1
- description: Typha (calico enterprise)
fromPort: 5473
protocol: tcp
toPort: 5473
`}
</CodeBlock>
</Admonition>

<InstallOpenShiftManifests />
Expand Down

0 comments on commit e8ad9e7

Please sign in to comment.