Skip to content

Commit

Permalink
rephrased the compat matrix description
Browse files Browse the repository at this point in the history
  • Loading branch information
facchettos committed Feb 19, 2024
1 parent 0ae6f6e commit a2d528f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions docs/pages/deploying-vclusters/compat-matrix.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ sidebar_label: Compatibility Matrix

## Compatibility Matrix for k3s distro

The following table provides a compatibility matrix of which k8s version are supported aginst which vcluster distro versions:
Compatibility matrix showing which host k8s version (left column) is supported by which vCluster k3s distro versions.

| | V1.29.0-K3S1 | V1.28.5-K3S1 | V1.27.9-K3S1 | V1.26.12-K3S1 |
|------|--------------------|--------------------|--------------------|--------------------|
Expand All @@ -25,7 +25,7 @@ Legend:

## Compatibility Matrix for k8s distro

The following table provides a compatibility matrix of which k8s version are supported aginst which vcluster distro versions:
Compatibility matrix showing which host k8s version (left column) is supported by which vCluster k8s distro versions.

| | V1.29.0 | V1.28.4 | V1.27.8 | V1.26.11 |
|------|--------------------|--------------------|--------------------|--------------------|
Expand All @@ -45,7 +45,7 @@ Legend:

## Compatibility Matrix for k0s distro

The following table provides a compatibility matrix of which k8s version are supported aginst which vcluster distro versions:
Compatibility matrix showing which host k8s version (left column) is supported by which vCluster k0s distro versions.

| | V1.29.1-K0S 0 | V1.28.2-K0S 0 | V1.27.6-K0S 0 | V1.26.9-K0S 0 |
|------|--------------------|--------------------|--------------------|--------------------|
Expand All @@ -65,7 +65,7 @@ Legend:

## Compatibility Matrix for eks distro

The following table provides a compatibility matrix of which k8s version are supported aginst which vcluster distro versions:
Compatibility matrix showing which host k8s version (left column) is supported by which vCluster eks distro versions.

| | V1.28.2-EKS-1-28-6 | V1.27.6-EKS-1-27-13 | V1.26.9-EKS-1-26-19 | V1.25.14-EKS-1-25-23 |
|------|--------------------|---------------------|---------------------|----------------------|
Expand Down
2 changes: 1 addition & 1 deletion hack/compat-matrix/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ func main() {
versionMap = values.EKSAPIVersionMap
}
buff := updateTableWithDistro(v, versionMap, issues)
renderedBytes.WriteString(fmt.Sprintf(templateString, v, buff.String()))
renderedBytes.WriteString(fmt.Sprintf(templateString, v, v, buff.String()))
renderedBytes.WriteString(createKnownIssue(issues.K3s))
buff.Reset()
}
Expand Down
2 changes: 1 addition & 1 deletion hack/compat-matrix/matrix-template.tmpl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Compatibility Matrix for %s distro

The following table provides a compatibility matrix of which k8s version are supported aginst which vcluster distro versions:
Compatibility matrix showing which host k8s version (left column) is supported by which vCluster %s distro versions.

%s

Expand Down

0 comments on commit a2d528f

Please sign in to comment.