Merge branch 'master' of https://git.cluster.fun/AverageMarcus/dotfiles
This commit is contained in:
commit
4b787f5046
@ -3,68 +3,24 @@ k9s:
|
|||||||
maxConnRetry: 5
|
maxConnRetry: 5
|
||||||
enableMouse: false
|
enableMouse: false
|
||||||
headless: false
|
headless: 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: -1
|
sinceSeconds: -1
|
||||||
fullScreenLogs: false
|
fullScreenLogs: false
|
||||||
textWrap: false
|
textWrap: false
|
||||||
showTime: false
|
showTime: false
|
||||||
currentContext: microk8s
|
currentContext:
|
||||||
currentCluster: microk8s-cluster
|
currentCluster:
|
||||||
clusters:
|
clusters: []
|
||||||
clusterfun-scaleway:
|
|
||||||
namespace:
|
|
||||||
active: git-sync
|
|
||||||
favorites:
|
|
||||||
- all
|
|
||||||
- git-sync
|
|
||||||
- kube-system
|
|
||||||
- opengraph
|
|
||||||
- workadventure
|
|
||||||
- blog
|
|
||||||
- monitoring
|
|
||||||
- inlets
|
|
||||||
- dashboard
|
|
||||||
view:
|
|
||||||
active: po
|
|
||||||
featureGates:
|
|
||||||
nodeShell: false
|
|
||||||
shellPod:
|
|
||||||
image: busybox:1.31
|
|
||||||
namespace: default
|
|
||||||
limits:
|
|
||||||
cpu: 100m
|
|
||||||
memory: 100Mi
|
|
||||||
portForwardAddress: localhost
|
|
||||||
microk8s-cluster:
|
|
||||||
namespace:
|
|
||||||
active: ""
|
|
||||||
favorites:
|
|
||||||
- monitoring
|
|
||||||
- ingress
|
|
||||||
- kube-system
|
|
||||||
- argocd
|
|
||||||
- all
|
|
||||||
- default
|
|
||||||
view:
|
|
||||||
active: po
|
|
||||||
featureGates:
|
|
||||||
nodeShell: false
|
|
||||||
shellPod:
|
|
||||||
image: busybox:1.31
|
|
||||||
namespace: default
|
|
||||||
limits:
|
|
||||||
cpu: 100m
|
|
||||||
memory: 100Mi
|
|
||||||
portForwardAddress: localhost
|
|
||||||
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
@ -9,6 +9,7 @@ pre-reqs: ## Install all required binaries.
|
|||||||
[ -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; \
|
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 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; \
|
||||||
which curlie > /dev/null || brew install rs/tap/curlie; \
|
which curlie > /dev/null || brew install rs/tap/curlie; \
|
||||||
@ -40,6 +41,7 @@ pre-reqs: ## Install all required binaries.
|
|||||||
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; \
|
brew list rust > /dev/null || brew upgrade rust; \
|
||||||
|
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; \
|
||||||
which curlie > /dev/null && brew upgrade rs/tap/curlie; \
|
which curlie > /dev/null && brew upgrade rs/tap/curlie; \
|
||||||
|
Loading…
Reference in New Issue
Block a user