Devops
Kubernetes sidecar example | Create multi-container Pod
Kubernetes Sidecar container is just an additional container inside the same Pod. All containers inside the same pod will use the same namespace and will …
How to add label to running pod in Kubernetes
There are two methods to add label to running pod in Kubernetes. Using kubectl label pods or kubectl edit command to edit a resource object.
How to add or remove label from node in Kubernetes
Add a label to node. Remove a label from node. Use kubectl label node to add or remove a label from worker or controller nodes in Kubernetes Cluster
Kubernetes sidecar container examples
In the Kubernetes space, the container providing helper functionality is called a sidecar container. It lives alongside the main application container within …
Perform Kubernetes Autoscaling | Horizontal Pod Autoscaler (HPA)
Kubernetes autoscaling requires a metrics-server to monitor the CPU and Memory usage. Horizontal Pod Autoscaler can be used to automatically scale up and down …
