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 OSSMC compatibility matrix #755

Merged
merged 4 commits into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
21 changes: 13 additions & 8 deletions content/en/docs/Installation/installation-guide/prerequisites.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ which is the default.

For more information, see the [Istio documentation](https://istio.io/latest/docs/ops/best-practices/security/#control-plane).


### Version Compatibility

Each Kiali release is tested against the most recent Istio release. In general,
Expand All @@ -48,17 +47,25 @@ supported Istio versions.

<br />

## Openshift Console Plugin (OSSMC) Version Compatibility
ferhoyos marked this conversation as resolved.
Show resolved Hide resolved

Currently OSSMC plugin only works with Kiali server 1.73.

{{<compat-table-ossmc>}}

<br />

## OpenShift Service Mesh Version Compatibility

{{% alert title="OpenShift" color="warning" %}}
If you are running Red Hat OpenShift Service Mesh (RH OSSM), use only the bundled version of Kiali.
ferhoyos marked this conversation as resolved.
Show resolved Hide resolved
{{% /alert %}}

|<div style="width:70px">OSSM</div>|<div style="width:100px">Kiali</div>|Notes|
|-------|------------------|---|
|2.4 |1.65 | |
|2.3 |1.57 | |
|2.2 |1.48 | |
| <div style="width:70px">OSSM</div> | <div style="width:100px">Kiali</div> | Notes |
| ---------------------------------- | ------------------------------------ | ----- |
| 2.4 | 1.65 | |
| 2.3 | 1.57 | |
| 2.2 | 1.48 | |

<br />

Expand Down Expand Up @@ -108,5 +115,3 @@ gcloud compute firewall-rules update <firewall-rule-name> --allow <previous-port
{{% alert color="success" %}}
Istio deployments on private clusters also need extra ports to be opened. Check the [Istio installation page for GKE](https://istio.io/latest/docs/setup/platform-setup/gke/) to see all the extra installation steps for this platform.
{{% /alert %}}


9 changes: 9 additions & 0 deletions data/compatibility/ossmc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# The Compatible Version Matrix between OSSMC, OCP and Kiali
# See: content/en/docs/Installation/installation-guide/prerequisites.md -> {{<compat-table-ossmc>}}
versionRange:
- ocpVersion: "4.12+"
minOSSMCVersion: "0.4.0"
maxOSSMCVersion: "1.xx"
kialiVersion: "1.73"
notes:

24 changes: 24 additions & 0 deletions layouts/shortcodes/compat-table-ossmc.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{{ $data := index .Site.Data.compatibility.ossmc }}

<table>
<thead>
<tr>
<th style="width: 100px">Openshift</th>
ferhoyos marked this conversation as resolved.
Show resolved Hide resolved
<th style="width: 120px">Min OSSMC</th>
<th style="width: 120px">Max OSSMC</th>
<th style="width: 70px">Kiali</th>
<th>Notes</th>
</tr>
</thead>
<tbody>
{{ range $data.versionRange }}
<tr>
<td>{{ .ocpVersion }}</td>
<td>{{ .minOSSMCVersion }}</td>
<td>{{ .maxOSSMCVersion }}</td>
<td>{{ .kialiVersion }}</td>
<td>{{ .notes }}</td>
</tr>
{{ end }}
</tbody>
</table>
Loading