“Build once, deploy anywhere” sounds great on paper, but if you want to save money by leveraging ARM targets like the ones found on AWS EKS, or even stick with your old i386 servers, deploying everywhere might be a challenge because you’ll have to create builds specific for these platforms….
Lens – Kubernetes IDE and Dashboard
If you want to visualize your Kubernetes cluster on your desktop I have found that using Lens is one of the easiest and the most visually appealing products on the market. I have not reviewed all Kubernetes IDE’s but of the ones I have tried out Lens is the one…
Special configuration considerations when setting up container image
Change kubeschool/name_of_your_image to whatever you want #### Login to AWS aws ecr get-login-password –region us-east-2 | docker login –username AWS –password-stdin 37#########79.dkr.ecr.us-east-2.amazonaws.com #### Create the container repository aws ecr create-repository \ –region us-east-2 \ –repository-name kubeschool/name_of_your_image \ #### Build the Docker Image for amd64 docker buildx build –platform linux/amd64 –pull…