many updates

This commit is contained in:
Matt Anderson
2026-05-29 17:50:15 -05:00
parent 5064f88c27
commit 71fe62d71c
11 changed files with 286 additions and 32 deletions

View File

@@ -4,10 +4,11 @@ k9s:
active: cp1-ns
lockFavorites: false
favorites:
- all
- cp1-ns
- default
view:
active: po
active: namespace
featureGates:
nodeShell: false
portForwardAddress: localhost

View File

@@ -0,0 +1,4 @@
benchmarks:
defaults:
concurrency: 2
requests: 200

View File

@@ -0,0 +1,14 @@
k9s:
cluster: microk8s-cluster
namespace:
active: nperf15-241024
lockFavorites: false
favorites:
- nperf15-241024
- default
view:
active: po
featureGates:
nodeShell: false
portForwardAddress: localhost
proxy: null

View File

@@ -13,7 +13,7 @@ k9s:
reactive: false
noIcons: false
defaultsToFullScreen: false
skin: onedark
skin: ember
skipLatestRevCheck: false
disablePodCounting: false
shellPod:

View File

@@ -3,9 +3,9 @@
appearance=$(defaults read -g AppleInterfaceStyle 2>/dev/null)
if [[ "$appearance" = "Dark" ]]; then
skin="onedark"
skin="ember"
else
skin="onelight"
skin="ember-light"
fi
config_file="$HOME/dotfiles/k9s/.config/k9s/config.yaml"

View File

@@ -0,0 +1,111 @@
# Ember Light — warm ivory variant k9s skin
# Colors derived from ghostty ember-light theme
foreground: &foreground "#282418"
background: &background "#e6dac4"
black: &black "#282418"
blue: &blue "#3a6080"
green: &green "#4a6830"
grey: &grey "#282418"
orange: &orange "#b84c30"
purple: &purple "#905050"
red: &red "#b84c30"
yellow: &yellow "#7a6820"
cyan: &cyan "#386858"
k9s:
body:
fgColor: *foreground
bgColor: *background
logoColor: *green
prompt:
fgColor: *foreground
bgColor: *background
suggestColor: *orange
info:
fgColor: *grey
sectionColor: *green
help:
fgColor: *foreground
bgColor: *background
keyColor: *yellow
numKeyColor: *blue
sectionColor: *purple
dialog:
fgColor: *black
bgColor: *background
buttonFgColor: *foreground
buttonBgColor: *green
buttonFocusFgColor: *black
buttonFocusBgColor: *blue
labelFgColor: *orange
fieldFgColor: *blue
frame:
border:
fgColor: *foreground
focusColor: *blue
menu:
fgColor: *grey
keyColor: *yellow
numKeyColor: *yellow
crumbs:
fgColor: *background
bgColor: *green
activeColor: *yellow
status:
newColor: *blue
modifyColor: *green
addColor: *grey
pendingColor: *orange
errorColor: *red
highlightColor: *yellow
killColor: *purple
completedColor: *grey
title:
fgColor: *blue
bgColor: *background
highlightColor: *purple
counterColor: *foreground
filterColor: *blue
views:
charts:
bgColor: *background
defaultDialColors:
- *green
- *red
defaultChartColors:
- *green
- *red
table:
fgColor: *yellow
bgColor: *background
cursorFgColor: *background
cursorBgColor: *blue
markColor: *yellow
header:
fgColor: *grey
bgColor: *background
sorterColor: *orange
xray:
fgColor: *blue
bgColor: *background
cursorColor: *foreground
graphicColor: *yellow
showIcons: false
yaml:
keyColor: *red
colonColor: *grey
valueColor: *grey
logs:
fgColor: *grey
bgColor: *background
indicator:
fgColor: *blue
bgColor: *background
toggleOnColor: *red
toggleOffColor: *grey
help:
fgColor: *grey
bgColor: *background
indicator:
fgColor: *blue

View File

@@ -0,0 +1,111 @@
# Ember — dark variant k9s skin
# Colors derived from ghostty ember theme
foreground: &foreground "#d8d0c0"
background: &background "transparent"
black: &black "#1c1b19"
blue: &blue "#7890a0"
green: &green "#8a9868"
grey: &grey "#d8d0c0"
orange: &orange "#e08060"
purple: &purple "#b07878"
red: &red "#e08060"
yellow: &yellow "#c8b468"
cyan: &cyan "#80a090"
k9s:
body:
fgColor: *foreground
bgColor: *background
logoColor: *green
prompt:
fgColor: *foreground
bgColor: *background
suggestColor: *orange
info:
fgColor: *grey
sectionColor: *green
help:
fgColor: *foreground
bgColor: *background
keyColor: *yellow
numKeyColor: *blue
sectionColor: *purple
dialog:
fgColor: *black
bgColor: *background
buttonFgColor: *foreground
buttonBgColor: *green
buttonFocusFgColor: *black
buttonFocusBgColor: *blue
labelFgColor: *orange
fieldFgColor: *blue
frame:
border:
fgColor: *green
focusColor: *blue
menu:
fgColor: *grey
keyColor: *yellow
numKeyColor: *yellow
crumbs:
fgColor: *black
bgColor: *green
activeColor: *yellow
status:
newColor: *blue
modifyColor: *green
addColor: *grey
pendingColor: *orange
errorColor: *red
highlightColor: *yellow
killColor: *purple
completedColor: *grey
title:
fgColor: *blue
bgColor: *background
highlightColor: *purple
counterColor: *foreground
filterColor: *blue
views:
charts:
bgColor: *background
defaultDialColors:
- *green
- *red
defaultChartColors:
- *green
- *red
table:
fgColor: *yellow
bgColor: *background
cursorFgColor: *black
cursorBgColor: *blue
markColor: *orange
header:
fgColor: *grey
bgColor: *background
sorterColor: *orange
xray:
fgColor: *blue
bgColor: *background
cursorColor: *foreground
graphicColor: *orange
showIcons: false
yaml:
keyColor: *red
colonColor: *grey
valueColor: *grey
logs:
fgColor: *grey
bgColor: *background
indicator:
fgColor: *blue
bgColor: *background
toggleOnColor: *red
toggleOffColor: *grey
help:
fgColor: *grey
bgColor: *background
indicator:
fgColor: *blue