0Pricing
Docker & Kubernetes for Developers · Lesson

Working with kubectl: Your Cluster Control Tool

Get hands-on with kubectl, the command-line tool to inspect, create, and manage every resource in a Kubernetes cluster.

What Is kubectl

kubectl is the official CLI that talks to the Kubernetes API server. Nearly every cluster operation, creating, reading, updating, deleting resources, goes through it.

Configuring Cluster Access

kubectl reads a kubeconfig file (default ~/.kube/config) that holds cluster endpoints, users, and credentials grouped into contexts.

kubectl config get-contexts
kubectl config use-context my-cluster

All lessons in this course

  1. Introduction to Kubernetes & Why It Matters
  2. Kubernetes Architecture & Components
  3. Deploying Your First Pod
  4. Working with kubectl: Your Cluster Control Tool
← Back to Docker & Kubernetes for Developers