Security in terms of containers/KubernetesAll cloud providers and self defined security tools which works on the principles of IAM, policies, RBAC while network part has WAF, security groups Network Access Control List, load Balancers and different sessions of the TCP protocol.For authentica...Aug 12, 2024·3 min read
Important Linux Commands you will require as Linux Admin /Devops Engineer /Site Reliability Engineer.File Commands ls: List files and directories in the current directory. pwd: Print the current working directory. cd: Change the current working directory. mkdir: Create a new directory. rmdir: Remove an empty directory. rm: Remove files and di...Jun 2, 2023·4 min read
Demystifying APIs and SDKs: Empowering Seamless Integration and DevelopmentIntroduction In today's interconnected world, where software applications collaborate and share resources, APIs play a pivotal role. They enable different applications to communicate and exchange data efficiently. Alongside APIs, Software Development...May 30, 2023·3 min read
Create Infrastructure from TerraformLaunch a Terraform server on AWS using EC2 Install Terraform on the Ec2 instance Install git on the EC2 instance create a directory on the server like - "terragit" cd "terragit" Run the command "git init" in the directory and create a tf file in...May 25, 2023·4 min read
Dictionaries in PythonWhat are dictionaries in Python? A dictionary in Python is an unordered collection of key-value pairs, where each key is mapped to a value. It's a data structure that allows you to store, retrieve, and manipulate data efficiently. A dictionary is sim...Jan 30, 2023·3 min read