Skip to content

Commit

Permalink
K9s: rev 0.24.15 (#1218)
Browse files Browse the repository at this point in the history
* fix cron triggers

* fix cron triggers again...

* fix #1203 #1206

* cleaning up

* revert persistent flag

* fix #1181 + update docs
  • Loading branch information
derailed committed Aug 6, 2021
1 parent 495b078 commit 0bc6179
Show file tree
Hide file tree
Showing 17 changed files with 449 additions and 327 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
@@ -1,7 +1,7 @@
# -----------------------------------------------------------------------------
# The base image for building the k9s binary

FROM golang:1.16.5-alpine3.13 AS build
FROM golang:1.16.6-alpine3.13 AS build

WORKDIR /k9s
COPY go.mod go.sum main.go Makefile ./
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -5,7 +5,7 @@ PACKAGE := github.com/derailed/$(NAME)
GIT_REV ?= $(shell git rev-parse --short HEAD)
SOURCE_DATE_EPOCH ?= $(shell date +%s)
DATE ?= $(shell date -u -d @${SOURCE_DATE_EPOCH} +"%Y-%m-%dT%H:%M:%SZ")
VERSION ?= v0.24.14
VERSION ?= v0.24.15
IMG_NAME := derailed/k9s
IMAGE := ${IMG_NAME}:${VERSION}

Expand Down
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -101,6 +101,7 @@ K9s is available on Linux, macOS and Windows platforms.
```shell
curl.exe -A MS https://webinstall.dev/k9s | powershell
```

---

## Building From Source
Expand Down Expand Up @@ -277,7 +278,7 @@ K9s uses aliases to navigate most K8s resources.

## K9s Configuration

K9s keeps its configurations inside of a `k9s` directory and the location depends on your operating system.
K9s keeps its configurations inside of a `k9s` directory and the location depends on your operating system. K9s leverages [XDG](https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html) to load its various configurations files.

| Unix | macOS | Windows |
|-----------------|-----------------------------|-----------------------|
Expand Down
64 changes: 64 additions & 0 deletions change_logs/release_v0.24.15.md
@@ -0,0 +1,64 @@
<img src="https://raw.githubusercontent.com/derailed/k9s/master/assets/k9s_small.png" align="right" width="200" height="auto"/>

# Release v0.24.15

## 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)

---

## ♫ Sounds Behind The Release ♭

* [Paradise Delay - Marteria, DJ Kose](https://www.youtube.com/watch?v=eM-xTN8ggOs)
* [Fool For Your Stockings - ZZ Top - Sadly this one is a tribute to Dusty Hill ;(](https://www.youtube.com/watch?v=UExKTZ3veB8)

---

### 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`!

* [Viacheslav Moskin](https://github.com/viacheslavmoskin)
* [Thomas Peter Bernsten](https://github.com/tpberntsen)
* [EMR-Bear](https://github.com/emrbear)

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.

Thank you!!

---

## !!BREAKING CHANGE!!... We've moved!

As of this drop, k9s home directory is now configurable via [XDG](https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html). Please see the specification depending on your platform of choice. You will now need to set or use the default for `$XDG_CONFIG_HOME` if not already present on your system. This is now the defacto replacement for`HOME/.k9s` as K9s will no longer honor this directory to load artifacts such as config, skins, views, etc... If you have existing customizations, you will need to move those over to your `$XDG_CONFIG_HOME/k9s` dir.

This feature is still fresh and we could have totally missed a piece, so please proceed with caution and keep that issue tracker handy...

Please join me in giving a Big Thank you! to [Arthur](https://github.com/pysen) for making this happen for us!

---

## Resolved Issues

* [Issue #1209](https://github.com/derailed/k9s/issues/1209) K9s - Popeye run instructions
* [Issue #1203](https://github.com/derailed/k9s/issues/1203) K9s does not remember last view I was in when switching contexts
* [Issue #1181](https://github.com/derailed/k9s/issues/1181) Cannot list roles

---

## PRs

* [PR #1213](https://github.com/derailed/k9s/pull/1213) Big Thanks to [Takumasa Sakao](https://github.com/sachaos)!
* [PR #1205](https://github.com/derailed/k9s/pull/1205) Great catch from [David Alger](https://github.com/davidalger)!
* [PR #1198](https://github.com/derailed/k9s/pull/1198) Once again [Takumasa Sakao](https://github.com/sachaos) to the rescue!!
* [PR #1196](https://github.com/derailed/k9s/pull/1196) ATTA Boy! [Daniel Lee Harple](https://github.com/dlh)
* [PR #1025](https://github.com/derailed/k9s/pull/1025) Big Thanks to [Arthur](https://github.com/pysen)

---

<img src="https://raw.githubusercontent.com/derailed/k9s/master/assets/imhotep_logo.png" width="32" height="auto"/> © 2020 Imhotep Software LLC. All materials licensed under [Apache v2.0](http://www.apache.org/licenses/LICENSE-2.0)
32 changes: 16 additions & 16 deletions go.mod
Expand Up @@ -9,39 +9,39 @@ replace (
)

require (
github.com/atotto/clipboard v0.1.4
github.com/adrg/xdg v0.3.0
github.com/atotto/clipboard v0.1.4
github.com/cenkalti/backoff v2.2.1+incompatible
github.com/cenkalti/backoff/v4 v4.1.0
github.com/derailed/popeye v0.9.0
github.com/cenkalti/backoff/v4 v4.1.1
github.com/derailed/popeye v0.9.7
github.com/derailed/tview v0.6.1
github.com/drone/envsubst v1.0.2 // indirect
github.com/fatih/color v1.10.0
github.com/drone/envsubst v1.0.3 // indirect
github.com/fatih/color v1.12.0
github.com/fsnotify/fsnotify v1.4.9
github.com/fvbommel/sortorder v1.0.2
github.com/gdamore/tcell/v2 v2.3.1
github.com/ghodss/yaml v1.0.0
github.com/kylelemons/godebug v1.1.0 // indirect
github.com/mattn/go-runewidth v0.0.12
github.com/mattn/go-runewidth v0.0.13
github.com/openfaas/faas v0.0.0-20200207215241-6afae214e3ec
github.com/openfaas/faas-cli v0.0.0-20200124160744-30b7cec9634c
github.com/openfaas/faas-provider v0.15.0
github.com/petergtz/pegomock v2.9.0+incompatible
github.com/rakyll/hey v0.1.4
github.com/rs/zerolog v1.22.0
github.com/rs/zerolog v1.23.0
github.com/ryanuber/go-glob v1.0.0 // indirect
github.com/sahilm/fuzzy v0.1.0
github.com/spf13/cobra v1.1.3
github.com/spf13/cobra v1.2.1
github.com/stretchr/testify v1.7.0
golang.org/x/text v0.3.6
gopkg.in/yaml.v2 v2.4.0
helm.sh/helm/v3 v3.6.1
k8s.io/api v0.21.2
k8s.io/apimachinery v0.21.2
k8s.io/cli-runtime v0.21.2
k8s.io/client-go v0.21.2
k8s.io/klog/v2 v2.8.0
k8s.io/kubectl v0.21.2
k8s.io/metrics v0.21.2
helm.sh/helm/v3 v3.6.3
k8s.io/api v0.21.3
k8s.io/apimachinery v0.21.3
k8s.io/cli-runtime v0.21.3
k8s.io/client-go v0.21.3
k8s.io/klog/v2 v2.10.0
k8s.io/kubectl v0.21.3
k8s.io/metrics v0.21.3
sigs.k8s.io/yaml v1.2.0
)

0 comments on commit 0bc6179

Please sign in to comment.