-
-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
72 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# $XDG_CONFIG_HOME/k9s/aliases.yaml | ||
aliases: | ||
dep: apps/v1/deployments |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
plugins: | ||
|
||
# View user-supplied values when the helm chart was created | ||
helm-values: | ||
shortCut: v | ||
confirm: false | ||
description: Values | ||
scopes: | ||
- helm | ||
command: sh | ||
background: false | ||
args: | ||
- -c | ||
- "helm get values $COL-NAME -n $NAMESPACE --kube-context $CONTEXT | less -K" | ||
|
||
# Use HolmesGPT to ask questions | ||
holmesgpt: | ||
shortCut: Shift-H | ||
description: Ask HolmesGPT | ||
scopes: | ||
- all | ||
command: bash | ||
background: false | ||
confirm: false | ||
args: | ||
- -c | ||
- | | ||
holmes ask "why is $NAME of $RESOURCE_NAME in -n $NAMESPACE not working as expected" | ||
echo "Press 'q' to exit" | ||
while : ; do | ||
read -n 1 k <&1 | ||
if [[ $k = q ]] ; then | ||
break | ||
fi | ||
done | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
return { | ||
'chipsenkbeil/distant.nvim', | ||
branch = 'v0.3', | ||
config = function() | ||
require('distant'):setup() | ||
end | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters