madhup.hashnode.devStep-by-Step Guide: Accessing UTHO Cloud Instances with SSHWhat is UTHO ? Utho, India's leading public cloud provider, empowers businesses to break free from vendor lock-in, slow speed, high cost, and complexity with simple, secure, and reliable cloud solutions. To, access UTHO instance, follow the below st...Jun 29, 2024·1 min read
madhup.hashnode.devCreating an EC2 instance on AWS using AWSCLIInstall AWSCLI sudo apt update curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" unzip awscliv2.zip Note: if unzip command not installed sudo apt install unzip Create Key pair aws ec2 create-key-pair --key-name MyKe...Nov 15, 2023·1 min read
madhup.hashnode.dev2 tier application deployment on kubernetesWhat is Kubernetes? Kubernetes is an open-source container orchestration tool for automating deployment, scaling and management of containerized applications. It is also known as k8s. So, let's proceed with the 2 tier application deployment on Kubern...Sep 27, 2023·3 min read
madhup.hashnode.devIntroduction to Terraform and Terraform BasicsNowadays, Terraform is the most demanding tool in terms of DevOps. So, let's discuss about some questions and concepts regarding terraform. What is Terraform and how can it help you manage infrastructure as code? Terraform is an IAAC ( Infrastructure...Sep 9, 2023·2 min read
madhup.hashnode.devDocker commands that any DevOps Engineer should never missDocker run command docker run command is used to run the docker container using docker images. Example: docker run hello-world Docker inspect command docker inspect command gives us all the details about the docker container. In simple terms, doc...Aug 18, 2023·2 min read