Posts

Showing posts from January, 2026
Linux Interview Questions: ======================== How much yourself rate on yourself on linux os ? 1).after rebooting linux os , the disk is not showing up ? So what kind of steps u have to take it up ? 2).what is permanent mouth and temoarat mounting into linux os ? 3).didi you worked on ILO into linux os ? Those are physical serves or virtual servers … We can take the console directly from the hp hardware servers… 4).have you been transfer the data between two servers into linux os ? 5).what is the scp command ? What is the difference between both commands like as the scp and rsync command into linux os ? 6).you want to creta the 5gb of the disk ? So what we will do int that case ? While using the fdisk or parted into linux os ? 7).How to update the partition table into linux os ? 8).are u work with lvm ? 9).what is the lvm? 10).you have to extend the lvm , no free space for vg into linux os ? 11).Hva you extend the lvm ? 12)).do you know about the softlink and ha...

Kubernetes and Docker

What is the pod ? What is a Pod? A Pod is the smallest deployable unit in Kubernetes. It represents one or more containers that: Share the same network (IP, ports) Share storage volumes Run together on the same node Think of a Pod as a wrapper around containers. Manifest yaml file:(POD): apiVersion: v1 kind: Pod metadata: name: nginx-pod spec: containers: - name: nginx image: nginx ports: - containerPort: 80 2)what is the replicates? ReplicaSet (Ensure Desired Number of Pods) 🔹 What is a ReplicaSet? A ReplicaSet ensures a specified number of identical Pods are running at all times. 🔹 Why do we use ReplicaSets? =High availability. =Self-healing. =Automatic Pod recreation. ========================================================================================= apiVersion: apps/v1 (REPLICATIONS): kind: ReplicaSet metadata: name: nginx-rs spec: replicas: 3 selector: matchLabels: app: nginx template: metadata: labels: ...