diff --git a/README.md b/README.md index f59e8ef4..8d2d71b3 100644 --- a/README.md +++ b/README.md @@ -695,7 +695,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. 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 | --- 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,