Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add required steps for installing OSS Calico on Openshift v4.16+ on AWS #1820

Merged
merged 3 commits into from
Dec 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions calico/getting-started/kubernetes/openshift/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,31 @@
openshift-install create manifests
```

:::note

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.

Check failure on line 73 in calico/getting-started/kubernetes/openshift/installation.mdx

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐶 [Vale.Terms] Use 'Typha' instead of 'typha'. Raw Output: {"message": "[Vale.Terms] Use 'Typha' instead of 'typha'.", "location": {"path": "calico/getting-started/kubernetes/openshift/installation.mdx", "range": {"start": {"line": 73, "column": 90}}}, "severity": "ERROR"}

Edit `spec.network.cni.cniIngressRules` in the `cluster-api/02_infra-cluster.yaml` file to add the following rules:

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

:::

<InstallOpenShiftManifests />

### Optionally provide additional configuration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,31 @@
openshift-install create manifests
```

:::note

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.

Check failure on line 73 in calico_versioned_docs/version-3.28/getting-started/kubernetes/openshift/installation.mdx

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐶 [Vale.Terms] Use 'Typha' instead of 'typha'. Raw Output: {"message": "[Vale.Terms] Use 'Typha' instead of 'typha'.", "location": {"path": "calico_versioned_docs/version-3.28/getting-started/kubernetes/openshift/installation.mdx", "range": {"start": {"line": 73, "column": 90}}}, "severity": "ERROR"}

Edit `spec.network.cni.cniIngressRules` in the `cluster-api/02_infra-cluster.yaml` file to add the following rules:

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

:::

<InstallOpenShiftManifests />

### Optionally provide additional configuration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,31 @@
openshift-install create manifests
```

:::note

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.

Check failure on line 73 in calico_versioned_docs/version-3.29/getting-started/kubernetes/openshift/installation.mdx

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐶 [Vale.Terms] Use 'Typha' instead of 'typha'. Raw Output: {"message": "[Vale.Terms] Use 'Typha' instead of 'typha'.", "location": {"path": "calico_versioned_docs/version-3.29/getting-started/kubernetes/openshift/installation.mdx", "range": {"start": {"line": 73, "column": 90}}}, "severity": "ERROR"}

Edit `spec.network.cni.cniIngressRules` in the `cluster-api/02_infra-cluster.yaml` file to add the following rules:

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

:::

<InstallOpenShiftManifests />

### Optionally provide additional configuration
Expand Down
Loading