Compare commits
26 Commits
61545c7939
...
05fd6a64bd
Author | SHA1 | Date | |
---|---|---|---|
05fd6a64bd | |||
4b787f5046 | |||
2cd75934ac | |||
a6b8d2b29e | |||
|
072aeb4c42 | ||
|
8fd8077ba1 | ||
ff544ee43e | |||
|
b171074349 | ||
|
18a78386a4 | ||
|
13a55a8b7a | ||
|
299f345a54 | ||
|
d92841b3f4 | ||
dcaf6f8b17 | |||
fda40a53cd | |||
6a035990da | |||
b40d7e7a6a | |||
23353843a1 | |||
74b4c585c2 | |||
929cdf0f25 | |||
|
4f582027f3 | ||
|
868de6144f | ||
|
a66272c2db | ||
3e41fe0705 | |||
567910bdb6 | |||
93f499d34b | |||
ea8321b336 |
@ -1,4 +1,4 @@
|
|||||||
export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:$HOME/goworkspace/bin:$HOME/.cargo/bin"
|
export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:$HOME/goworkspace/bin:$HOME/.cargo/bin:/usr/local/kubebuilder/bin"
|
||||||
export EDITOR='vim'
|
export EDITOR='vim'
|
||||||
export VISUAL='code'
|
export VISUAL='code'
|
||||||
|
|
||||||
|
@ -3,14 +3,14 @@ k9s:
|
|||||||
maxConnRetry: 5
|
maxConnRetry: 5
|
||||||
enableMouse: false
|
enableMouse: false
|
||||||
headless: false
|
headless: false
|
||||||
logoless: false
|
logoless: true
|
||||||
crumbsless: false
|
crumbsless: false
|
||||||
readOnly: false
|
readOnly: false
|
||||||
noIcons: false
|
noIcons: false
|
||||||
logger:
|
logger:
|
||||||
tail: 100
|
tail: 1000
|
||||||
buffer: 5000
|
buffer: 5000
|
||||||
sinceSeconds: 60
|
sinceSeconds: -1
|
||||||
fullScreenLogs: false
|
fullScreenLogs: false
|
||||||
textWrap: false
|
textWrap: false
|
||||||
showTime: false
|
showTime: false
|
||||||
@ -20,7 +20,7 @@ k9s:
|
|||||||
thresholds:
|
thresholds:
|
||||||
cpu:
|
cpu:
|
||||||
critical: 90
|
critical: 90
|
||||||
warn: 70
|
warn: 80
|
||||||
memory:
|
memory:
|
||||||
critical: 90
|
critical: 90
|
||||||
warn: 70
|
warn: 80
|
||||||
|
2
Makefile
2
Makefile
@ -8,6 +8,7 @@ pre-reqs: ## Install all required binaries.
|
|||||||
which brew > /dev/null || bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"; \
|
which brew > /dev/null || bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"; \
|
||||||
[ -d ~/.oh-my-zsh ] || sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"; \
|
[ -d ~/.oh-my-zsh ] || sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"; \
|
||||||
brew list --cask homebrew/cask-fonts/font-open-dyslexic-nerd-font > /dev/null || brew install homebrew/cask-fonts/font-open-dyslexic-nerd-font; \
|
brew list --cask homebrew/cask-fonts/font-open-dyslexic-nerd-font > /dev/null || brew install homebrew/cask-fonts/font-open-dyslexic-nerd-font; \
|
||||||
|
brew list rust > /dev/null || brew install rust; \
|
||||||
which rustup > /dev/null || curl https://sh.rustup.rs -sSf | sh -s -- -y --no-modify-path; \
|
which rustup > /dev/null || curl https://sh.rustup.rs -sSf | sh -s -- -y --no-modify-path; \
|
||||||
which fzf > /dev/null || brew install fzf; \
|
which fzf > /dev/null || brew install fzf; \
|
||||||
which bat > /dev/null || brew install bat; \
|
which bat > /dev/null || brew install bat; \
|
||||||
@ -39,6 +40,7 @@ pre-reqs: ## Install all required binaries.
|
|||||||
.PHONY: upgrade
|
.PHONY: upgrade
|
||||||
upgrade: ## Upgrade all required binaries.
|
upgrade: ## Upgrade all required binaries.
|
||||||
brew list --cask homebrew/cask-fonts/font-open-dyslexic-nerd-font > /dev/null && brew upgrade homebrew/cask-fonts/font-open-dyslexic-nerd-font; \
|
brew list --cask homebrew/cask-fonts/font-open-dyslexic-nerd-font > /dev/null && brew upgrade homebrew/cask-fonts/font-open-dyslexic-nerd-font; \
|
||||||
|
brew list rust > /dev/null || brew upgrade rust; \
|
||||||
which rustup > /dev/null || rustup update; \
|
which rustup > /dev/null || rustup update; \
|
||||||
which fzf > /dev/null && brew upgrade fzf; \
|
which fzf > /dev/null && brew upgrade fzf; \
|
||||||
which bat > /dev/null && brew upgrade bat; \
|
which bat > /dev/null && brew upgrade bat; \
|
||||||
|
Loading…
Reference in New Issue
Block a user