config/k9s: stackspin config
This commit is contained in:
parent
c6ae684aa7
commit
aee439343e
4 changed files with 205 additions and 0 deletions
9
.config/k9s/aliases.yaml
Normal file
9
.config/k9s/aliases.yaml
Normal file
|
@ -0,0 +1,9 @@
|
|||
aliases:
|
||||
dp: deployments
|
||||
sec: v1/secrets
|
||||
jo: jobs
|
||||
cr: clusterroles
|
||||
crb: clusterrolebindings
|
||||
ro: roles
|
||||
rb: rolebindings
|
||||
np: networkpolicies
|
41
.config/k9s/config.yaml
Normal file
41
.config/k9s/config.yaml
Normal file
|
@ -0,0 +1,41 @@
|
|||
k9s:
|
||||
liveViewAutoRefresh: false
|
||||
screenDumpDir: /home/janek/.local/state/k9s/screen-dumps
|
||||
refreshRate: 2
|
||||
maxConnRetry: 5
|
||||
readOnly: false
|
||||
noExitOnCtrlC: false
|
||||
ui:
|
||||
enableMouse: false
|
||||
headless: false
|
||||
logoless: false
|
||||
crumbsless: false
|
||||
reactive: false
|
||||
noIcons: false
|
||||
skipLatestRevCheck: false
|
||||
disablePodCounting: false
|
||||
shellPod:
|
||||
image: busybox:1.35.0
|
||||
namespace: default
|
||||
limits:
|
||||
cpu: 100m
|
||||
memory: 100Mi
|
||||
imageScans:
|
||||
enable: false
|
||||
exclusions:
|
||||
namespaces: []
|
||||
labels: {}
|
||||
logger:
|
||||
tail: 100
|
||||
buffer: 5000
|
||||
sinceSeconds: -1
|
||||
fullScreen: false
|
||||
textWrap: false
|
||||
showTime: false
|
||||
thresholds:
|
||||
cpu:
|
||||
critical: 90
|
||||
warn: 70
|
||||
memory:
|
||||
critical: 90
|
||||
warn: 70
|
56
.config/k9s/config.yml
Normal file
56
.config/k9s/config.yml
Normal file
|
@ -0,0 +1,56 @@
|
|||
k9s:
|
||||
liveViewAutoRefresh: false
|
||||
refreshRate: 2
|
||||
maxConnRetry: 5
|
||||
enableMouse: false
|
||||
enableImageScan: false
|
||||
headless: false
|
||||
logoless: false
|
||||
crumbsless: false
|
||||
readOnly: false
|
||||
noExitOnCtrlC: false
|
||||
noIcons: false
|
||||
shellPod:
|
||||
image: busybox:1.35.0
|
||||
namespace: default
|
||||
limits:
|
||||
cpu: 100m
|
||||
memory: 100Mi
|
||||
skipLatestRevCheck: false
|
||||
logger:
|
||||
tail: 100
|
||||
buffer: 5000
|
||||
sinceSeconds: 300
|
||||
fullScreenLogs: false
|
||||
textWrap: false
|
||||
showTime: false
|
||||
currentContext: ftt.gmbh
|
||||
currentCluster: ftt.gmbh
|
||||
keepMissingClusters: false
|
||||
clusters:
|
||||
ftt.gmbh:
|
||||
namespace:
|
||||
active: all
|
||||
lockFavorites: false
|
||||
favorites:
|
||||
- stackspin
|
||||
- stackspin-apps
|
||||
- flux-system
|
||||
- velero
|
||||
- stackspout
|
||||
- all
|
||||
- default
|
||||
view:
|
||||
active: pod
|
||||
featureGates:
|
||||
nodeShell: false
|
||||
portForwardAddress: localhost
|
||||
thresholds:
|
||||
cpu:
|
||||
critical: 90
|
||||
warn: 70
|
||||
memory:
|
||||
critical: 90
|
||||
warn: 70
|
||||
screenDumpDir: /tmp/k9s-screens-janek
|
||||
disablePodCounting: false
|
99
.config/k9s/plugin.yml
Executable file
99
.config/k9s/plugin.yml
Executable file
|
@ -0,0 +1,99 @@
|
|||
# https://github.com/derailed/k9s/blob/master/plugins/flux.yaml
|
||||
# move selected line to chosen resource in K9s, then:
|
||||
# Shift-T (with confirmation) to toggle helm releases or kustomizations suspend and resume
|
||||
# Shift-R (no confirmation) to reconcile a git source or a helm release or a kustomization
|
||||
plugin:
|
||||
|
||||
toggle-helmrelease:
|
||||
shortCut: Shift-T
|
||||
confirm: true
|
||||
scopes:
|
||||
- helmreleases
|
||||
description: Toggle to suspend or resume a HelmRelease
|
||||
command: sh
|
||||
background: true
|
||||
args:
|
||||
- -c
|
||||
- "flux $([ $(kubectl get helmreleases -n $NAMESPACE $NAME -o=custom-columns=TYPE:.spec.suspend | tail -1) = \"true\" ] && echo \"resume\" || echo \"suspend\") helmrelease -n $NAMESPACE $NAME | less"
|
||||
|
||||
toggle-kustomization:
|
||||
shortCut: Shift-T
|
||||
confirm: true
|
||||
scopes:
|
||||
- kustomizations
|
||||
description: Toggle to suspend or resume a Kustomization
|
||||
command: sh
|
||||
background: true
|
||||
args:
|
||||
- -c
|
||||
- "flux $([ $(kubectl get kustomizations -n $NAMESPACE $NAME -o=custom-columns=TYPE:.spec.suspend | tail -1) = \"true\" ] && echo \"resume\" || echo \"suspend\") kustomization -n $NAMESPACE $NAME | less"
|
||||
|
||||
reconcile-git:
|
||||
shortCut: Shift-R
|
||||
confirm: false
|
||||
description: Flux reconcile
|
||||
scopes:
|
||||
- gitrepositories
|
||||
command: sh
|
||||
# background: false
|
||||
background: true
|
||||
args:
|
||||
- -c
|
||||
- "flux reconcile source git -n $NAMESPACE $NAME | less"
|
||||
|
||||
reconcile-hr:
|
||||
shortCut: Shift-R
|
||||
confirm: false
|
||||
description: Flux reconcile
|
||||
scopes:
|
||||
- helmreleases
|
||||
command: sh
|
||||
# background: false
|
||||
background: true
|
||||
args:
|
||||
- -c
|
||||
- "flux reconcile helmrelease -n $NAMESPACE $NAME | less"
|
||||
|
||||
reconcile-ks:
|
||||
shortCut: Shift-R
|
||||
confirm: false
|
||||
description: Flux reconcile
|
||||
scopes:
|
||||
- kustomizations
|
||||
command: sh
|
||||
# background: false
|
||||
background: true
|
||||
args:
|
||||
- -c
|
||||
- "flux reconcile kustomization -n $NAMESPACE $NAME | less"
|
||||
|
||||
getall-ns:
|
||||
shortCut: Shift-G
|
||||
confirm: false
|
||||
description: Get All Resources in NS
|
||||
scopes:
|
||||
- namespaces
|
||||
command: sh
|
||||
background: false
|
||||
args:
|
||||
- -c
|
||||
- "kubectl get all -n $NAME | less"
|
||||
|
||||
# https://github.com/derailed/k9s/issues/1017#issuecomment-769005253
|
||||
# requires https://github.com/rajatjindal/kubectl-modify-secret installed
|
||||
# i.e. by krew install modify-secret
|
||||
edit-secret:
|
||||
shortCut: Ctrl-X
|
||||
confirm: false
|
||||
description: "Edit Decoded Secret"
|
||||
scopes:
|
||||
- secrets
|
||||
command: kubectl
|
||||
background: false
|
||||
args:
|
||||
- modify-secret
|
||||
- --namespace
|
||||
- $NAMESPACE
|
||||
- --context
|
||||
- $CONTEXT
|
||||
- $NAME
|
Loading…
Add table
Reference in a new issue