0Pricing
Spring Boot 4 Complete Guide · บทเรียน

พื้นฐานการจัดการคลัสเตอร์ด้วย Kubernetes

ทำความรู้จักการนำแอปพลิเคชัน Spring Boot ไปใช้งานและจัดการบนคลัสเตอร์ Kubernetes

พื้นฐานการจัดการคลัสเตอร์ด้วย Kubernetes เป็นบทเรียน Spring Boot 4 Complete Guide ฟรีบน CoddyKit นี่คือบทเรียนที่ 1 จากทั้งหมด 4 บทเรียน คุณสามารถอ่านบทเรียนทั้งหมดด้านล่างฟรี — จากนั้นลองปฏิบัติด้วยตัวคุณเองในเบราว์เซอร์พร้อมตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7 บทเรียนนี้เป็นส่วนหนึ่งของเส้นทางการเรียน Spring Boot 4 Complete Guide และความก้าวหน้าของคุณจะซิงค์ข้ามเว็บและแอป CoddyKit คอร์ส Spring Boot 4 Complete Guide มีบทเรียนทั้งหมด 4 บทเรียน

บางส่วนของบทเรียนนี้ยังไม่ได้รับการแปล และแสดงเป็นภาษาอังกฤษ

Intro to Kubernetes (K8s)

Welcome to Kubernetes basics! Kubernetes (often called K8s) is an open-source system for automating deployment, scaling, and management of containerized applications.

Think of it as an operating system for your cloud. It helps you run your applications reliably, even when traffic spikes or servers fail.

Why K8s for Spring Boot?

For Spring Boot applications, Kubernetes offers huge advantages:

  • Automated Scaling: Easily scale your app up or down based on demand.
  • Self-Healing: K8s restarts failed containers and replaces unresponsive ones.
  • Service Discovery: Helps your microservices find each other.
  • Load Balancing: Distributes network traffic to ensure stability.

K8s Cluster: Control & Nodes

A Kubernetes cluster consists of at least one Control Plane (formerly Master) and one or more Nodes (Worker Machines).

  • Control Plane: The "brain" of K8s. It manages the cluster, schedules applications, and maintains the desired state.
  • Nodes: Where your applications (containers) actually run. Each node has components like a container runtime (e.g., Docker) and a Kubelet agent.

Pods: Your App's Home

A Pod is the smallest, most basic deployable unit in Kubernetes. It represents a single instance of a running process in your cluster.

A Pod typically contains one or more tightly coupled containers (like your Spring Boot app and a sidecar logging agent). All containers in a Pod share the same network namespace and storage.

Deployments: Managing Pods

While Pods are fundamental, you don't usually create them directly. Instead, you use a Deployment.

A Deployment manages a set of identical Pods. It ensures you always have a specified number of Pod replicas running, handles rolling updates, and allows easy scaling of your application.

Services: Exposing Your App

How do users or other applications access your Pods? With a Service!

A Service defines a logical set of Pods and a policy by which to access them. It provides a stable IP address and DNS name, even if the underlying Pods change or scale. Services can also act as load balancers.

`kubectl`: K8s Command Tool

You interact with your Kubernetes cluster using the kubectl command-line tool.

It allows you to run commands against Kubernetes clusters, like deploying applications, inspecting cluster resources, and viewing logs. It's your primary interface to K8s.

kubectl get pods
kubeclt get services
kubeclt apply -f my-app.yaml

Creating a Basic Deployment

Let's define a simple Deployment for a 'hello-world' type application using YAML. This tells Kubernetes to run 2 replicas of our image.

Save this as hello-deployment.yaml:

apiVersion: apps/v1
kind: Deployment
metadata:
  name: hello-app
spec:
  replicas: 2
  selector:
    matchLabels:
      app: hello-app
  template:
    metadata:
      labels:
        app: hello-app
    spec:
      containers:
      - name: hello-container
        image: k8s.gcr.io/echoserver:1.4
        ports:
        - containerPort: 8080

Applying Your Deployment

Now, let's apply this definition to our Kubernetes cluster using kubectl. After applying, we can check the status of our Pods.

kubectl apply -f hello-deployment.yaml
kubeclt get deployments
kubeclt get pods --selector app=hello-app

Exposing with a Service

Our Pods are running, but not accessible externally. Let's create a Service to expose our hello-app Deployment. This will create a load balancer to route traffic.

Save this as hello-service.yaml and apply it:

apiVersion: v1
kind: Service
metadata:
  name: hello-service
spec:
  selector:
    app: hello-app
  ports:
    - protocol: TCP
      port: 80
      targetPort: 8080
  type: LoadBalancer

Quick Check on K8s Basics

Which of the following Kubernetes components is responsible for managing a set of identical Pods, handling scaling, and rolling updates?

Recap: K8s Basics

Great job! In this lesson, you learned the fundamental concepts of Kubernetes:

  • What K8s is and why it's useful.
  • The core architecture: Control Plane and Nodes.
  • Key resources: Pods, Deployments, and Services.
  • How to use kubectl to deploy and manage a basic application.

Next, you'll explore advanced topics like distributed tracing and resilience patterns!

คำถามที่พบบ่อย

บทเรียน “พื้นฐานการจัดการคลัสเตอร์ด้วย Kubernetes” ฟรีหรือไม่

ใช่ — ข้อความเต็มของ “พื้นฐานการจัดการคลัสเตอร์ด้วย Kubernetes” ฟรีให้อ่านที่นี่บนเว็บ เพื่อปฏิบัติแบบโต้ตอบ (ตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7) และปลดล็อคส่วนที่เหลือของคอร์ส Spring Boot 4 Complete Guide ให้อัปเกรดเป็น CoddyKit PRO คอร์ส Spring Boot 4 Complete Guide มีบทเรียนทั้งหมด 4 บทเรียน

คุณจะเรียนรู้อะไรในบทเรียน “พื้นฐานการจัดการคลัสเตอร์ด้วย Kubernetes”

ทำความรู้จักการนำแอปพลิเคชัน Spring Boot ไปใช้งานและจัดการบนคลัสเตอร์ Kubernetes คุณปฏิบัติ Spring Boot 4 Complete Guide ด้วยโค้ดที่ใช้งานได้จริงที่คุณเรียกใช้โดยตรงในเบราว์เซอร์ และติวเตอร์ AI ตลอด 24/7 ตอบคำถามของคุณขณะที่คุณไปผ่านบทเรียน

คุณต้องมีประสบการณ์ก่อนที่จะเริ่มเรียน Spring Boot 4 Complete Guide หรือไม่

ไม่จำเป็นต้องมีประสบการณ์มาก่อน Spring Boot 4 Complete Guide บน CoddyKit ออกแบบมาสำหรับผู้เริ่มต้นไปจนถึงผู้เรียนขั้นสูง คุณสามารถเริ่มต้นที่นี่หรือเริ่มจากตัวแรกและเรียนด้วยความเร็วของคุณเอง นี่คือบทเรียนที่ 1 จากทั้งหมด 4 บทเรียน

บทเรียน “พื้นฐานการจัดการคลัสเตอร์ด้วย Kubernetes” ใช้เวลานานแค่ไหน

บทเรียน CoddyKit ส่วนใหญ่ใช้เวลาประมาณ 5–10 นาที แต่ละบทเรียนจึงสั้นและเป็นแบบโต้ตอบ คุณสามารถก้าวหน้าอย่างต่อเนื่องและกลับมาเรียนต่อจากตรงที่เพิ่งหยุดบนเว็บและแอปได้เลย

ฉันเขียนและรันโค้ดในบทเรียน Spring Boot 4 Complete Guide นี้ได้ไหม

ได้ บทเรียน Spring Boot 4 Complete Guide ทุกบทมีตัวแก้ไขโค้ดในตัว คุณจึงเขียนและรันโค้ดจริงได้เลยในเบราว์เซอร์ และได้รับข้อเสนอแนะจาก AI ในทันที — ไม่ต้องติดตั้งในเครื่องของคุณ

บทเรียนทั้งหมดในหลักสูตรนี้

  1. พื้นฐานการจัดการคลัสเตอร์ด้วย Kubernetes
  2. การติดตามแบบกระจายด้วย Sleuth และ Zipkin
  3. การตรวจสอบสถานะและรูปแบบความทนทาน
  4. เมตริกและแดชบอร์ดด้วย Micrometer และ Prometheus
← กลับไปที่ Spring Boot 4 Complete Guide