k9s config
This commit is contained in:
parent
2f460aeb05
commit
7453af3d35
2 changed files with 146 additions and 0 deletions
46
.config/k9s/config.yml
Normal file
46
.config/k9s/config.yml
Normal file
|
@ -0,0 +1,46 @@
|
|||
k9s:
|
||||
refreshRate: 2
|
||||
maxConnRetry: 5
|
||||
enableMouse: false
|
||||
headless: false
|
||||
logoless: false
|
||||
crumbsless: false
|
||||
readOnly: false
|
||||
noIcons: false
|
||||
logger:
|
||||
tail: 100
|
||||
buffer: 5000
|
||||
sinceSeconds: 60
|
||||
fullScreenLogs: false
|
||||
textWrap: false
|
||||
showTime: false
|
||||
currentContext: k8s2
|
||||
currentCluster: k8s2
|
||||
clusters:
|
||||
k8s2:
|
||||
namespace:
|
||||
active: gitea
|
||||
favorites:
|
||||
- gitea
|
||||
- default
|
||||
view:
|
||||
active: po
|
||||
featureGates:
|
||||
nodeShell: false
|
||||
shellPod:
|
||||
image: busybox:1.31
|
||||
command: []
|
||||
args: []
|
||||
namespace: default
|
||||
limits:
|
||||
cpu: 100m
|
||||
memory: 100Mi
|
||||
portForwardAddress: localhost
|
||||
thresholds:
|
||||
cpu:
|
||||
critical: 90
|
||||
warn: 70
|
||||
memory:
|
||||
critical: 90
|
||||
warn: 70
|
||||
screenDumpDir: /tmp/k9s-screens-dln
|
100
.config/k9s/skin.yml
Normal file
100
.config/k9s/skin.yml
Normal file
|
@ -0,0 +1,100 @@
|
|||
# K9s Gruvbox Light Skin Contributed by [@indiebrain](https://github.com/indiebrain)
|
||||
foreground: &foreground default
|
||||
background: &background default
|
||||
current_line: ¤t_line "#ebdbb2"
|
||||
selection: &selection "#3c3735"
|
||||
comment: &comment "#bdad93"
|
||||
cyan: &cyan "#78ad79"
|
||||
green: &green "#989719"
|
||||
orange: &orange "#d79920"
|
||||
magenta: &magenta "#b16185"
|
||||
blue: &blue "#448488"
|
||||
red: &red "#cc231c"
|
||||
|
||||
k9s:
|
||||
body:
|
||||
fgColor: *foreground
|
||||
bgColor: *background
|
||||
logoColor: *blue
|
||||
prompt:
|
||||
fgColor: *foreground
|
||||
bgColor: *background
|
||||
suggestColor: *orange
|
||||
info:
|
||||
fgColor: *magenta
|
||||
sectionColor: *foreground
|
||||
help:
|
||||
fgColor: *foreground
|
||||
bgColor: *background
|
||||
keyColor: *magenta
|
||||
numKeyColor: *blue
|
||||
sectionColor: *green
|
||||
dialog:
|
||||
fgColor: *foreground
|
||||
bgColor: *background
|
||||
buttonFgColor: *foreground
|
||||
buttonBgColor: *magenta
|
||||
buttonFocusFgColor: white
|
||||
buttonFocusBgColor: *cyan
|
||||
labelFgColor: *orange
|
||||
fieldFgColor: *foreground
|
||||
frame:
|
||||
border:
|
||||
fgColor: *selection
|
||||
focusColor: *current_line
|
||||
menu:
|
||||
fgColor: *foreground
|
||||
keyColor: *magenta
|
||||
numKeyColor: *magenta
|
||||
crumbs:
|
||||
fgColor: *foreground
|
||||
bgColor: *comment
|
||||
activeColor: *blue
|
||||
status:
|
||||
newColor: *cyan
|
||||
modifyColor: *blue
|
||||
addColor: *green
|
||||
errorColor: *red
|
||||
highlightColor: *orange
|
||||
killColor: *comment
|
||||
completedColor: *comment
|
||||
title:
|
||||
fgColor: *foreground
|
||||
bgColor: *background
|
||||
highlightColor: *orange
|
||||
counterColor: *blue
|
||||
filterColor: *magenta
|
||||
views:
|
||||
charts:
|
||||
bgColor: background
|
||||
defaultDialColors:
|
||||
- *blue
|
||||
- *red
|
||||
defaultChartColors:
|
||||
- *blue
|
||||
- *red
|
||||
table:
|
||||
fgColor: *foreground
|
||||
bgColor: *background
|
||||
cursorFgColor: *foreground
|
||||
cursorBgColor: *current_line
|
||||
header:
|
||||
fgColor: *foreground
|
||||
bgColor: *background
|
||||
sorterColor: *selection
|
||||
xray:
|
||||
fgColor: *foreground
|
||||
bgColor: *background
|
||||
cursorColor: *current_line
|
||||
graphicColor: *blue
|
||||
showIcons: false
|
||||
yaml:
|
||||
keyColor: *magenta
|
||||
colonColor: *blue
|
||||
valueColor: *foreground
|
||||
logs:
|
||||
fgColor: *foreground
|
||||
bgColor: *background
|
||||
indicator:
|
||||
fgColor: *foreground
|
||||
bgColor: *background
|
Loading…
Reference in a new issue