From 237ef23bf7f9e616dd00894bd6312cfef9fa16bd Mon Sep 17 00:00:00 2001 From: derailed Date: Thu, 20 Feb 2020 11:57:55 -0700 Subject: [PATCH] fix #561 --- .goreleaser.yml | 2 +- change_logs/release_v0.16.1.md | 23 +++++++++++++++++++++++ internal/view/pod.go | 2 +- 3 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 change_logs/release_v0.16.1.md diff --git a/.goreleaser.yml b/.goreleaser.yml index dbc015af..3ea1f36b 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -16,7 +16,7 @@ builds: - 386 - amd64 - arm64 - - armhf + - arm goarm: - 6 - 7 diff --git a/change_logs/release_v0.16.1.md b/change_logs/release_v0.16.1.md new file mode 100644 index 00000000..29cc927f --- /dev/null +++ b/change_logs/release_v0.16.1.md @@ -0,0 +1,23 @@ + + +# Release v0.16.1 + +## Notes + +Thank you to all that contributed with flushing out issues and enhancements for K9s! I'll try to mark some of these issues as fixed. But if you don't mind grab the latest rev and see if we're happier with some of the fixes! If you've filed an issue please help me verify and close. Your support, kindness and awesome suggestions to make K9s better is as ever very much noticed and appreciated! + +Also if you dig this tool, please make some noise on social! [@kitesurfer](https://twitter.com/kitesurfer) + +On Slack? Please join us [K9slackers](https://join.slack.com/t/k9sers/shared_invite/enQtOTA5MDEyNzI5MTU0LWQ1ZGI3MzliYzZhZWEyNzYxYzA3NjE0YTk1YmFmNzViZjIyNzhkZGI0MmJjYzhlNjdlMGJhYzE2ZGU1NjkyNTM) + +--- + +Maintenance Release! + +## Resolved Bugs/Features/PRs + +- [Issue #561](https://github.com/derailed/k9s/issues/561) + +--- + + © 2020 Imhotep Software LLC. All materials licensed under [Apache v2.0](http://www.apache.org/licenses/LICENSE-2.0) diff --git a/internal/view/pod.go b/internal/view/pod.go index 0ba9937a..08facd08 100644 --- a/internal/view/pod.go +++ b/internal/view/pod.go @@ -117,7 +117,7 @@ func (p *Pod) shellCmd(evt *tcell.EventKey) *tcell.EventKey { } row := p.GetTable().GetSelectedRowIndex() - status := ui.TrimCell(p.GetTable().SelectTable, row, p.GetTable().NameColIndex()+2) + status := ui.TrimCell(p.GetTable().SelectTable, row, p.GetTable().NameColIndex()+3) if status != render.Running { p.App().Flash().Errf("%s is not in a running state", path) return nil