From b0c9cf2de34364c92bdd6e0bedc4f54c373a8af9 Mon Sep 17 00:00:00 2001 From: facchettos Date: Fri, 16 Feb 2024 12:58:58 +0100 Subject: [PATCH] new line fix --- docs/pages/deploying-vclusters/compat-matrix.mdx | 1 + hack/compat-matrix/main.go | 3 +++ 2 files changed, 4 insertions(+) diff --git a/docs/pages/deploying-vclusters/compat-matrix.mdx b/docs/pages/deploying-vclusters/compat-matrix.mdx index c84effe2cf..e69095e4fa 100644 --- a/docs/pages/deploying-vclusters/compat-matrix.mdx +++ b/docs/pages/deploying-vclusters/compat-matrix.mdx @@ -23,6 +23,7 @@ Legend: | v1.27.9-k3s1 | 1.28 | there is some issue there | | v1.27.9-k3s1 | 1.29 | there is some issue there | +-------------------------+------------------+---------------------------+ + ## Compatibility Matrix for k8s distro The following table provides a compatibility matrix of which k8s version are supported aginst which vcluster distro versions: diff --git a/hack/compat-matrix/main.go b/hack/compat-matrix/main.go index a4e2e232c5..5578fb4e5d 100644 --- a/hack/compat-matrix/main.go +++ b/hack/compat-matrix/main.go @@ -135,6 +135,9 @@ func createKnownIssue(issues map[string]issueList) string { } } table.Render() + if buff.Len() > 0 { + buff.WriteString("\n") + } return buff.String() }