Dotnetcs

Simply Blogging

Categories: kubernetes

Kubernetes & commands

Kubernetes & commands

Pramod Pramod

Kubernetes is a rapidly evolving platform that manages container-based applications and their associated networking and storage components. Kubernetes focuses on the application workloads, not the underlying infrastructure components. Kubernetes provides a declarative approach to deployments, backed by a robust set of APIs for management operations. Core Kubernetes infrastructure components:

Read More
Kubernetes and docker QA

Kubernetes and docker QA

Pramod Pramod

Q1. What are some key components of Kubernetes? The Control plane, Kubelet, Kube-proxy, Kube controller manager, Etcd, and cloud controller manager are some of the key components of Kubernetes.

Read More
How to install IoT Edge on Kubernetes

How to install IoT Edge on Kubernetes

Pramod Pramod

IoT Edge can be installed on Kubernetes by using KubeVirt technology. KubeVirt is an open source, Cloud Native Computing Foundation (CNCF) project that offers a Kubernetes virtualization API and runtime to define and manage virtual machines.

Read More
Ensures a single pod per node

Ensures a single pod per node

Pramod Pramod

Kubernetes resource that ensures a single pod per node is the DaemonSet. A DaemonSet ensures that all (or some) nodes run a copy of a pod. When a new node is added to the cluster, the DaemonSet automatically schedules the defined pod on that node. If a node is removed from the cluster, the DaemonSet ensures that the corresponding pod is terminated.

Read More