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 e8ad9e7 commit 05f31e2
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 34 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,23 +84,21 @@ export default function InstallOpenShift(props) {
<p>For OpenShift **v4.16 or newer** on **AWS**, configure AWS security groups to allow BGP, typha and IP-in-IP encapsulation traffic by editing the OpenShift cluster-api manifests.</p>
<p>Edit `spec.network.cni.cniIngressRules` in the `cluster-api/02_infra-cluster.yaml` file to add </p>
<CodeBlock language='bash'>
{`
cniIngressRules:
(...)
- description: BGP (calico)
fromPort: 179
protocol: tcp
toPort: 179
- description: IP-in-IP (calico)
fromPort: -1
protocol: "4"
toPort: -1
- description: Typha (calico)
fromPort: 5473
protocol: tcp
toPort: 5473
`}

{`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>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,23 +84,21 @@ export default function InstallOpenShift(props) {
<p>For OpenShift **v4.16 or newer** on **AWS**, configure AWS security groups to allow BGP, typha and IP-in-IP encapsulation traffic by editing the OpenShift cluster-api manifests.</p>
<p>Edit `spec.network.cni.cniIngressRules` in the `cluster-api/02_infra-cluster.yaml` file to add </p>
<CodeBlock language='bash'>
{`
cniIngressRules:
(...)
- description: BGP (calico)
fromPort: 179
protocol: tcp
toPort: 179
- description: IP-in-IP (calico)
fromPort: -1
protocol: "4"
toPort: -1
- description: Typha (calico)
fromPort: 5473
protocol: tcp
toPort: 5473
`}

{`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 05f31e2

Please sign in to comment.