Aditya Dikeadityadike.hashnode.dev·Oct 1, 2023Kubernetes For Noobs ☸️Hey folks, since you've clicked on this post, I assume that you are a beginner and you want to understand what Kubernetes is and why it is so popular. We are going to explore a lot of things about Kubernetes, so just read the whole blog post, and you...Discuss·10 likesKubernetesWeMakeDevs
Ketanketangrover.hashnode.dev·Aug 29, 2023Project: Create Infrastructure using TerraformSo, basically in this project, we are going to use Terraform as Infrastructure as Code and write a Terraform file to build an entire Virtual Network on AWS. We can also do this using the AWS console, but for automation, we will use the AWS CLI and Te...DiscussTrainWithShubham
Ketanketangrover.hashnode.dev·Aug 28, 2023Introduction To DockerVirtual Machines ● Isolates applications and allocates resources to run that application ● VMs can be shared as images ● Aren’t dependent on the Host OS ● Multiple VMs can be run simultaneously using a hypervisor Docker Containers ● Standard unit of...Discuss·26 readsTrainWithShubham
manognamanogna.hashnode.dev·Aug 18, 2023Cloud Cost Monitoring using Komiser - part 5- name: AWS EC2 Komiser Playbook hosts: vm01 tasks: - name: Check if Docker is running! ansible.builtin.systemd: name: docker.service state: started enabled: true - name: Run Dockerfile ansible.builtin.command: a...Discuss·1 likekubesimplify
Aditya Dikeadityadike.hashnode.dev·Aug 15, 2023What Are Protocols, Anyway?In the world of the Internet, everything is incredibly fast and efficient. If you want a video or a movie, you can immediately get it from the internet. Similarly, if you need to send important documents to someone, you can easily transmit them withi...Discuss·10 likesComputer Networking2Articles1Week
Aditya Dikeadityadike.hashnode.dev·Aug 14, 2023Linux Building blocks for DockerDocker is an open platform that allows you to bundle, send, and run your applications without worrying about the underlying infrastructure. It lets you wrap and execute an application within an isolated environment known as a container. In simple ter...Discuss·10 likesDevops2Articles1Week
manognamanogna.hashnode.dev·Aug 12, 2023Cloud Cost Monitoring using Komiser - part 4Ansible is used for better configuring the infrastructure whereas Terraform is better used for infrastructure provisioning The node on which ansible is installed, to perform configuration management on multiple nodes by a code remotely is called a Ma...Discuss·1 likeDocker
manognamanogna.hashnode.dev·Aug 12, 2023Cloud Cost Monitoring using Komiser - part 3In the install.sh file we mentioned sudo apt install and in the middle, it asks for the confirmation of either yes or no, that is where the script was getting struck, so to bypass that we used -y we only deleted elastic ip and ec2-instance previousl...Discuss·1 like·28 readskomiser
manognamanogna.hashnode.dev·Aug 9, 2023Cloud Cost Monitoring using Komiser - part 2In our last practical we encountered some issues so for that, so we changed the .json file IAM user -> Users (Add users) -> Attach policies directly Then click on Create policy, This is where we can create own custom permissions we created .json fil...Discuss·1 likekomiser
Aditya Dikeadityadike.hashnode.dev·Aug 9, 2023Docker 101: Things to Know Before You BeginHey everyone, in this blog, we are going to learn some important things you need to know before diving into Docker. I know many folks watch tutorials, read documents, or blogs and directly jump into the installation and start using containers in thei...Discuss·10 likesDevops2Articles1Week