[K8S 2] Using kubectl to Create a Deployment
Kubernetes Deployments
Để triển khai ứng dụng trên Kubernetes Cluster, cần phải tạo một cấu hình Kubernetes Deployment. Control Plane sẽ sử dụng cấu hình này để lập lịch các instance của ứng dụng để chạy trên các Node riêng lẻ trong cluster.
Cơ chế tự phục hồi để giải quyết lỗi máy hoặc bảo trì.
Một khi instance của ứng dụng được tạo ra, Kubernetes Deployment Controller sẽ tiếp tục theo dõi hoạt động - trạng thái của các instance. Nếu một instance bị chết hoặc bị xóa, Deployment Controller sẽ thay thế bằng một instance mới trên một node khác trong cluster.
Triển khai ứng dụng trên Kubernetes
Để triển khai và quản lý ứng dụng trên Kubernetes, có thể sử dụng Kubectl.
Interactive Tutorial - Deploying an App
A Pod is the basic execution unit of a Kubernetes application. Each Pod represents a part of a workload that is running on your cluster. Learn more about Pods. To interact with the Terminal, please use the desktop/tablet version Continue to Module 3›
