EKSctl: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 1: | Line 1: | ||
<syntaxhighlight lang="bash"> | |||
PLATFORM=$(uname -s)_$(dpkg --print-architecture) | |||
wget -cq https://github.com/eksctl-io/eksctl/releases/latest/download/eksctl_${PLATFORM}.tar.gz -P ${HOME}/Downloads | |||
SUM_SUFFIX=$(curl -sL "https://github.com/eksctl-io/eksctl/releases/latest/download/eksctl_checksums.txt" | grep ${PLATFORM}) | |||
cat << EXE | bash | |||
cd ${HOME}/Downloads | |||
echo ${SUM_SUFFIX}|sha256sum --check | |||
tar -xzf eksctl_${PLATFORM}.tar.gz | |||
rm -rf eksctl_${PLATFORM}.tar.gz | |||
EXE | |||
cat << EXE |sudo bash | |||
cd ${HOME}/Downloads | |||
mv eksctl /usr/local/bin | |||
EXE | |||
</syntaxhighlight> | |||
==Playground== | |||
{| | |||
| valign="top" | | |||
<syntaxhighlight lang="bash"> | |||
</syntaxhighlight> | |||
| valign="top" | | |||
| valign="top" | | |||
|- | |||
| colspan="3" | | |||
---- | |||
|- | |||
| valign="top" | | |||
| valign="top" | | |||
| valign="top" | | |||
|} | |||
==References== | ==References== | ||
{| | {| | ||
| valign="top" | | | valign="top" | | ||
* [https://eksctl.io/getting-started/ EKS » CLI » Introduction] | |||
* [https://eksctl.io/usage/outposts/ EKS » CLI » Outposts] | * [https://eksctl.io/usage/outposts/ EKS » CLI » Outposts] | ||
* [https://eksctl.io/usage/schema/ EKS » CLI » Schema] | * [https://eksctl.io/usage/schema/ EKS » CLI » Schema] |
Revision as of 20:54, 22 July 2024
PLATFORM=$(uname -s)_$(dpkg --print-architecture)
wget -cq https://github.com/eksctl-io/eksctl/releases/latest/download/eksctl_${PLATFORM}.tar.gz -P ${HOME}/Downloads
SUM_SUFFIX=$(curl -sL "https://github.com/eksctl-io/eksctl/releases/latest/download/eksctl_checksums.txt" | grep ${PLATFORM})
cat << EXE | bash
cd ${HOME}/Downloads
echo ${SUM_SUFFIX}|sha256sum --check
tar -xzf eksctl_${PLATFORM}.tar.gz
rm -rf eksctl_${PLATFORM}.tar.gz
EXE
cat << EXE |sudo bash
cd ${HOME}/Downloads
mv eksctl /usr/local/bin
EXE
Playground
| ||
References
| ||