must get moore sleep!

mine
derailed 2021-12-13 15:42:51 -07:00
parent 34eab38afb
commit aef0840e73
2 changed files with 58 additions and 2 deletions

View File

@ -0,0 +1,56 @@
<img src="https://raw.githubusercontent.com/derailed/k9s/master/assets/k9s_small.png" align="right" width="200" height="auto"/>
# Release v0.25.10
## 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 are as ever very much noted and appreciated!
If you feel K9s is helping your Kubernetes journey, please consider joining our [sponsorship program](https://github.com/sponsors/derailed) and/or 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)
### A Word From Our Sponsors...
I want to recognize the following folks that have been kind enough to join our sponsorship program and opted to `pay it forward`!
* [Joshua Kapellen](https://github.com/joshuakapellen)
* [Qdentity](https://github.com/qdentity)
* [Maxim](https://github.com/bsod90)
* [Sönke Schau](https://github.com/xgcssch)
So if you feel K9s is helping with your productivity while administering your Kubernetes clusters, please consider pitching in as it will go a long way in ensuring a thriving environment for this repo and our k9ers community at large.
Also please take some time and give a huge shoot out to all the good folks below that have spent time plowing thru the code to help improve K9s for all of us!
Thank you!!
---
## Maintenance Release!
Doh! Sorry ;( with feelings...
---
## Resolved Issues
* [Issue #1361](https://github.com/derailed/k9s/issues/1361) Pulses not displaying graphs
* [Issue #1358](https://github.com/derailed/k9s/issues/1358) Namespace list is empty
* [Issue #1357](https://github.com/derailed/k9s/issues/1357) Benchmarks doesn't work on windows
* [Issue #1355](https://github.com/derailed/k9s/issues/1355) Trace log level does not exists
* [Issue #1345](https://github.com/derailed/k9s/issues/1345) Access denied after context switch
---
## PRs
* [PR #1363](https://github.com/derailed/k9s/pull/1363) Add rose-pine skin.
[Sergio Soria](https://github.com/sasoria)
* [PR #1356](https://github.com/derailed/k9s/pull/1356) Add flux trace shortcut to flux plugin.
[Guillaume Berche](https://github.com/gberche-orange)
* [PR #1321](https://github.com/derailed/k9s/pull/1321) Add customizable dump directory property.
[Vlasov Artem](https://github.com/VlasovArtem)
<img src="https://raw.githubusercontent.com/derailed/k9s/master/assets/imhotep_logo.png" width="32" height="auto"/> © 2021 Imhotep Software LLC. All materials licensed under [Apache v2.0](http://www.apache.org/licenses/LICENSE-2.0)

View File

@ -252,8 +252,8 @@ func (c *Config) CurrentUserName() (string, error) {
// CurrentNamespaceName retrieves the active namespace.
func (c *Config) CurrentNamespaceName() (string, error) {
ns, ov, err := c.clientConfig().Namespace()
fmt.Printf("!!!ZOB!!! %q -- %t\n", ns, ov)
ns, _, err := c.clientConfig().Namespace()
return ns, err
}