feat(mise): add eksctl to control eks cluster

This commit is contained in:
João Paulo Dubas 2024-06-05 12:47:07 +00:00
parent f2d96625d0
commit ff011f2d66
Signed by: joao.dubas
SSH Key Fingerprint: SHA256:V1mixgOGRc/YMhGx/DNkOSmJxgA2vHNrDZEk3wt/kOA
3 changed files with 7 additions and 0 deletions

View File

@ -193,6 +193,7 @@ RUN ${LOCAL_BIN_HOME}/mise plugins install --force --yes \
circleci-cli \
ctlptl \
dagger \
eksctl \
elixir \
erlang \
eza \

View File

@ -5,6 +5,7 @@ bitwarden = "2024.4.1"
circleci-cli = "0.1.30549"
ctlptl = "0.8.29"
dagger = "0.11.4"
eksctl = "0.180.0"
elixir = "1.17.0-rc.0-otp-27"
erlang = "27.0"
eza = "0.18.15"

View File

@ -10,6 +10,7 @@ if [ ! -d ${LOCAL_SRC_HOME}/elixir-ls/release ]; then
fi
# 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
echo "setup kubectl completion"
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"
ctlptl completion fish > ~/.config/fish/completions/ctlptl.fish
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 "$@"