Learnitweb

Category: kubernetes

  • Complete Kubernetes – Hands on

    1. Introduction In this tutorial, we’ll get some hands-on experience with Kubernetes. This is going to be a long tutorial as we’ll discuss various concepts. 2. ‘kubectl run’ command The kubectl run command is used to start a new instance of an application in Kubernetes, which is typically done by creating a Pod that runs…

  • Create a single node Kubernetes cluster on your laptop

    Introduction In this tutorial, we’ll setup the single-node Kubernetes cluster with Docker Desktop. Step 1: Install Docker Desktop Docker Desktop is the easiest way to get Docker, Kubernetes, and kubectl on your laptop. At the time of writing this tutorial, Docker Desktop can be downloaded from the following link: http://www.docker.com/products/docker-desktop/ Windows users should install the…

  • Kubernetes Pods

    1. What is a Kubernetes Pod? Pods are the smallest deployable units of computing that you can create and manage in Kubernetes. A Pod is a group of one or more containers, with shared storage and network resources, and a specification for how to run the containers. Each Pod is a shared execution environment for…

  • Kubernetes Fundamentals

    1. Introduction In this tutorial, we’ll discuss Kubernetes fundamental concepts and components. 2. Kubernetes cluster A Kubernetes cluster is a set of nodes, or machines, that run containerized applications managed by Kubernetes. A node provides CPU memory, other resources for use by applications. Kubernetes supports two node types: Both types can be physical servers, virtual…

  • Kubernetes – An Introduction

    1. What is Kubernetes? Kubernetes, also known as K8s, is an open source system for automating deployment, scaling, and management of containerized applications. 2. Orchestration An orchestrator is a system or platform designed to deploy applications and adapt dynamically to changes. Kubernetes abstracts the infrastructure. For example, Kubernetes is capable of the following: The best…