feat(mise): add eksctl to control eks cluster
This commit is contained in:
parent
f2d96625d0
commit
ff011f2d66
@ -193,6 +193,7 @@ RUN ${LOCAL_BIN_HOME}/mise plugins install --force --yes \
|
|||||||
circleci-cli \
|
circleci-cli \
|
||||||
ctlptl \
|
ctlptl \
|
||||||
dagger \
|
dagger \
|
||||||
|
eksctl \
|
||||||
elixir \
|
elixir \
|
||||||
erlang \
|
erlang \
|
||||||
eza \
|
eza \
|
||||||
|
@ -5,6 +5,7 @@ bitwarden = "2024.4.1"
|
|||||||
circleci-cli = "0.1.30549"
|
circleci-cli = "0.1.30549"
|
||||||
ctlptl = "0.8.29"
|
ctlptl = "0.8.29"
|
||||||
dagger = "0.11.4"
|
dagger = "0.11.4"
|
||||||
|
eksctl = "0.180.0"
|
||||||
elixir = "1.17.0-rc.0-otp-27"
|
elixir = "1.17.0-rc.0-otp-27"
|
||||||
erlang = "27.0"
|
erlang = "27.0"
|
||||||
eza = "0.18.15"
|
eza = "0.18.15"
|
||||||
|
@ -10,6 +10,7 @@ if [ ! -d ${LOCAL_SRC_HOME}/elixir-ls/release ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# NOTE: (jpd) create auto-completion
|
# NOTE: (jpd) create auto-completion
|
||||||
|
# TODO: (jpd) check a way to create a list and loop to create these completions
|
||||||
if [ ! -d ${XDG_CONFIG_HOME}/fish/completions/kubectl.fish ]; then
|
if [ ! -d ${XDG_CONFIG_HOME}/fish/completions/kubectl.fish ]; then
|
||||||
echo "setup kubectl completion"
|
echo "setup kubectl completion"
|
||||||
kubectl completion fish > ${XDG_CONFIG_HOME}/fish/completions/kubectl.fish
|
kubectl completion fish > ${XDG_CONFIG_HOME}/fish/completions/kubectl.fish
|
||||||
@ -30,5 +31,9 @@ if [ ! -d ${XDG_CONFIG_HOME}/fish/completions/ctlptl.fish ]; then
|
|||||||
echo "setup ctlptl completion"
|
echo "setup ctlptl completion"
|
||||||
ctlptl completion fish > ~/.config/fish/completions/ctlptl.fish
|
ctlptl completion fish > ~/.config/fish/completions/ctlptl.fish
|
||||||
fi
|
fi
|
||||||
|
if [ ! -d ${XDG_CONFIG_HOME}/fish/completions/eksctl.fish ]; then
|
||||||
|
echo "setup eksctl completion"
|
||||||
|
eksctl completion fish > ~/.config/fish/completions/eksctl.fish
|
||||||
|
fi
|
||||||
|
|
||||||
exec "$@"
|
exec "$@"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user