From 65546ada14d696f4fc548c6795eb49514900818a Mon Sep 17 00:00:00 2001 From: Steffen Krause Date: Thu, 7 Jan 2021 21:41:25 -0500 Subject: [PATCH 1/3] Correction of CronJob APIVersion --- internal/dao/cronjob.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/dao/cronjob.go b/internal/dao/cronjob.go index 865576b3..8a84d7f7 100644 --- a/internal/dao/cronjob.go +++ b/internal/dao/cronjob.go @@ -60,7 +60,7 @@ func (c *CronJob) Run(path string) error { Labels: cj.Spec.JobTemplate.Labels, OwnerReferences: []metav1.OwnerReference{ { - APIVersion: "batch/v1beta", + APIVersion: "batch/v1beta1", Kind: "CronJob", BlockOwnerDeletion: &true, Name: cj.Name, From 49ac5af2b6e7a66441f19731a597f7b498cb4b7a Mon Sep 17 00:00:00 2001 From: Michael K Date: Wed, 13 Jan 2021 10:24:12 -0600 Subject: [PATCH 2/3] fix typo for cluster based skins related to comment made in https://github.com/derailed/k9s/issues/980#issuecomment-738045801 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 14eb3b07..769ea4b0 100644 --- a/README.md +++ b/README.md @@ -666,7 +666,7 @@ Example: Dracula Skin ;) You can style K9s based on your own sense of look and style. Skins are YAML files, that enable a user to change the K9s presentation layer. K9s skins are loaded from `$HOME/.k9s/skin.yml`. If a skin file is detected then the skin would be loaded if not the current stock skin remains in effect. -You can also change K9s skins based on the cluster you are connecting too. In this case, you can specify the skin file name as `$HOME/.k9s/mycluster_skin.yml` +You can also change K9s skins based on the cluster you are connecting too. In this case, you can specify the skin file name as `$HOME/.k9s/mycontext_skin.yml` Below is a sample skin file, more skins are available in the skins directory in this repo, just simply copy any of these in your user's home dir as `skin.yml`. Colors can be defined by name or uing an hex representation. Of recent, we've added a color named `default` to indicate a transparent background color to preserve your terminal background color settings if so desired. From 998b41184218dd759cf94942bc5a468c58b9820a Mon Sep 17 00:00:00 2001 From: Bogdan Tsaitler <18561582+bzeitler69@users.noreply.github.com> Date: Tue, 2 Feb 2021 16:36:12 +0200 Subject: [PATCH 3/3] Update release_v0.13.4.md --- change_logs/release_v0.13.4.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/change_logs/release_v0.13.4.md b/change_logs/release_v0.13.4.md index 17ab97d0..0f1ac610 100644 --- a/change_logs/release_v0.13.4.md +++ b/change_logs/release_v0.13.4.md @@ -28,7 +28,7 @@ A small change here based on [Benjamin](https://github.com/binarycoded) excellen |--------|--------------------------------|-----------| | %CPU/R | Percentage of requested cpu | shift-x | | %MEM/R | Percentage of requested memory | shift-z | -| %MEM/L | Percentage of limited cpu | ctrl-x | +| %CPU/L | Percentage of limited cpu | ctrl-x | | %MEM/L | Percentage of limited memory | ctrl-z | ---