Skip to content

Commit

Permalink
Merge pull request #13415 from spowelljr/fixTable
Browse files Browse the repository at this point in the history
time-to-k8s: Fix long table lines auto wrapping
  • Loading branch information
medyagh authored Jan 20, 2022
2 parents 3fc348b + d92063c commit 7bdb2a2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions hack/benchmark/time-to-k8s/chart.go
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ func outputMarkdownTable(categories []plotter.Values, totals []float64, names []
t.SetAutoFormatHeaders(false)
t.SetBorders(tablewriter.Border{Left: true, Top: false, Right: true, Bottom: false})
t.SetCenterSeparator("|")
t.SetAutoWrapText(false)
t.AppendBulk(c)
t.Render()
fmt.Println(b.String())
Expand Down
20 changes: 10 additions & 10 deletions site/content/en/docs/benchmarks/timeToK8s/v1.25.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ weight: -20220120
---

![time-to-k8s](/images/benchmarks/timeToK8s/v1.25.0.png)
| | minikube version: v1.25.0 | kind v0.11.1 go1.16.4 | k3d version v5.2.2 |
| | | linux/amd64 | |
|----------------------|---------------------------|--------------------------------|--------------------|
| Command Exec | 26.227 | 28.446 | 13.532 |
| API Server Answering | 0.065 | 0.117 | 0.190 |
| Kubernetes SVC | 0.051 | 0.054 | 0.053 |
| DNS SVC | 0.051 | 0.055 | 0.054 |
| App Running | 15.618 | 32.373 | 21.373 |
| DNS Answering | 7.690 | 1.648 | 4.371 |
| Total | 49.701 | 62.692 | 39.573 |

| | minikube version: v1.25.0 | kind v0.11.1 go1.16.4 linux/amd64 | k3d version v5.2.2 |
|----------------------|---------------------------|-----------------------------------|--------------------|
| Command Exec | 26.227 | 28.446 | 13.532 |
| API Server Answering | 0.065 | 0.117 | 0.190 |
| Kubernetes SVC | 0.051 | 0.054 | 0.053 |
| DNS SVC | 0.051 | 0.055 | 0.054 |
| App Running | 15.618 | 32.373 | 21.373 |
| DNS Answering | 7.690 | 1.648 | 4.371 |
| Total | 49.701 | 62.692 | 39.573 |

0 comments on commit 7bdb2a2

Please sign in to comment.