Category: Kubernetes

  • Step-by-Step Guide to Installing Minikube on Windows

    Step-by-Step Guide to Installing Minikube on Windows

    Minikube is an ideal solution for setting up a Kubernetes cluster for a test or development environment. It only requires a single node, optionally as a virtual machine. To install Minikube on Windows, several preparations are required, including the installation of Docker. The first step to install Kubernetes on Windows 10/11 or Windows Server 2019/2022…

  • Understanding Role-Based Access Control (RBAC) in Kubernetes

    Understanding Role-Based Access Control (RBAC) in Kubernetes

    In a previous post in this Kubernetes guide, you learned about deploying stateful applications with Kubernetes StatefulSets. Today, we will discuss role-based access control (RBAC) in Kubernetes, which controls who can access Kubernetes cluster resources. It uses roles and role bindings to grant permissions to subjects, such as users, groups, or service accounts. Verify Kubernetes…

  • Exploring the CoreDNS Feature in Kubernetes

    Exploring the CoreDNS Feature in Kubernetes

    In a previous post in this Kubernetes guide, you learned about deploying stateful applications with Kubernetes StatefulSets. Today’s post will discuss Kubernetes CoreDNS. Earlier versions of Kubernetes used kube-dns to provide service discovery and name resolution within the cluster, which was based on dnsmasq and SkyDNS. The kube-dns had many problems, such as security vulnerabilities,…