AKAtharva Kulkarniinatharvasblog.hashnode.dev·Feb 8 · 5 min readModern Web AppsTo have The Understanding of Modern Web Apps Working We Will take The Example of the example app . Open The Example App on Your Browser , and Open The Developer Console Section . You can do this by Right Clicking and Selecting the Inspect Option and ...00
AKAtharva Kulkarniinatharvasblog.hashnode.dev·Aug 2, 2024 · 3 min readKubernetes DeploymentK8s Pods Suppose you have a Kubernetes cluster set up on your machine , lets assume of nginx. You create a Pod using YAML and it looks like this : apiVersion: v1 kind: Pod metadata: name: nginx spec: containers: - name: nginx image: nginx:1...00
AKAtharva Kulkarniinatharvasblog.hashnode.dev·Jun 27, 2024 · 7 min readBeginner's Guide to Linux Commands and Shell Scripting BasicsShell Scripting refers to creating a script and automate tasks.Inside this script contains some commands to run . Shell scripting is widely used by Devops engineers to automate tasks ,monitor CPU RAM ,nodehealth. We will look into Some of the Linux d...00