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

Fix issue where "unhealthy pods" panel on "rollout progress" dashboard is too tall #5200

Merged
merged 4 commits into from
Jun 9, 2023
Merged
Show file tree
Hide file tree
Changes from 3 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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* [ENHANCEMENT] Dashboards: adjust layout of "rollout progress" dashboard panels so that the "rollout progress" panel doesn't require scrolling. #5113
* [ENHANCEMENT] Dashboards: show container name first in "pods count per version" panel on "rollout progress" dashboard. #5113
* [BUGFIX] Dashboards: fix "unhealthy pods" panel on "rollout progress" dashboard showing only a number rather than the name of the workload and the number of unhealthy pods if only one workload has unhealthy pods. #5113
* [BUGFIX] Dashboards: fix "unhealthy pods" panel on "rollout progress" dashboard extending below the bottom of other dashboard panels. #5200

### Jsonnet

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28783,7 +28783,7 @@ data:
},
"fill": 1,
"gridPos": {
"h": 5,
"h": 3,
"w": 10,
"x": 0,
"y": 13
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1092,7 +1092,7 @@
},
"fill": 1,
"gridPos": {
"h": 5,
"h": 3,
"w": 10,
"x": 0,
"y": 13
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1092,7 +1092,7 @@
},
"fill": 1,
"gridPos": {
"h": 5,
"h": 3,
"w": 10,
"x": 0,
"y": 13
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ local filename = 'mimir-rollout-progress.json';
textMode: 'value_and_name',
},
id: 10,
gridPos: { h: 5, w: 10, x: 0, y: 13 },
gridPos: { h: 3, w: 10, x: 0, y: 13 },
},

//
Expand Down