kubelet Installation on Amazon Linux 2 -EC2

Step1 : Download the kubectl binary curl -O https://s3.us-west-2.amazonaws.com/amazon-eks/1.23.13/2022-10-31/bin/linux/amd64/kubectl Step2 : Apply execute permissions to the binary. chmod +x ./kubectl Step3 : Copy the binary to a folder in your PATH. mkdir -p $HOME/bin && cp ./kubectl $HOME/bin/kubectl && export PATH=$PATH:$HOME/bin sudo mkdir -p /var/lib/jenkins/bin && […]

Terraform Installation on Amazon Linux 2 – EC2

Step1 : Install yum-config-manager to manage your repositories. sudo yum install -y yum-utils Step2 : Use yum-config-manager to add the official HashiCorp Linux repository. sudo yum-config-manager –add-repo https://rpm.releases.hashicorp.com/AmazonLinux/hashicorp.repo Step3 : Install Terraform from the new repository. sudo yum -y install terraform Step4 : Verify that […]