Danh sách bài viết trong series Kubernetes cơ bản
- Bài 1: Kubernetes Cơ Bản – Cài Đặt Minikube Và Chạy Pod Đầu Tiên
- Bài 2: Kubernetes Pod Deployment – Triển Khai Ứng Dụng Đầu Tiên
- Bài 3: Kubernetes Service Ingress – Quản Lý Truy Cập Ứng Dụng
- Bài 4: Kubernetes ConfigMap Secret – Quản Lý Cấu Hình Ứng Dụng
- Bài 5: Kubernetes EKS AWS – Triển Khai Cluster Trên AWS
- Bài 6: Kubernetes Helm – Tự Động Triển Khai Ứng Dụng Dễ Dàng
- Bài 7: Kubernetes CI/CD – Tự Động Triển Khai Với GitHub Actions
- Bài 8: Kubernetes Monitoring – Giám Sát Với Prometheus Và Grafana
- Bài 9: Kubernetes Autoscaling – Tối Ưu Hóa Cluster Hiệu Quả
Service Và Ingress Là Gì?
Kubernetes Service Ingress là hai công cụ quan trọng để quản lý truy cập ứng dụng. Service cung cấp một địa chỉ IP cố định để kết nối đến các Pod, đảm bảo tính ổn định ngay cả khi Pod thay đổi. Ingress điều hướng lưu lượng từ bên ngoài vào Service, hỗ trợ truy cập qua tên miền và HTTPS. Trong bài 2, bạn đã dùng port-forward để truy cập ứng dụng. Bài này sẽ hướng dẫn bạn sử dụng Service và Ingress để truy cập ứng dụng Nginx trên Minikube một cách chuyên nghiệp hơn.
Bước 1: Khởi Động Cluster Minikube Và Tạo Deployment
- Hành động:
- Khởi động cluster Minikube:
minikube start --driver=docker
- Tạo file
nginx-deployment.yaml
:touch nginx-deployment.yaml
Mở file và dán nội dung:
apiVersion: apps/v1 kind: Deployment metadata: name: nginx-deployment spec: replicas: 2 selector: matchLabels: app: nginx template: metadata: labels: app: nginx spec: containers: - name: nginx image: nginx:latest ports: - containerPort: 80
- Triển khai Deployment:
kubectl apply -f nginx-deployment.yaml
- Khởi động cluster Minikube:
- Kết quả thực tế:
- Sau khi chạy
minikube start
, terminal hiển thị:minikube v1.33.1 on Ubuntu 22.04 Using the docker driver Starting control plane node in cluster minikube Done! kubectl is now configured to use "minikube" cluster
- Sau khi chạy
kubectl apply
, terminal hiển thị:deployment.apps/nginx-deployment created
- Kiểm tra Pod:
kubectl get pods
Output:
NAME READY STATUS RESTARTS AGE nginx-deployment-5d9f8b6f5-abcde 1/1 Running 0 10s nginx-deployment-5d9f8b6f5-fghij 1/1 Running 0 10s
- Sau khi chạy
- Đề xuất hình ảnh minh họa:
Hình ảnh chụp terminal hiển thị output của lệnhkubectl get pods
. Alt text: “Kubernetes Service Ingress – Pod từ Deployment chạy thành công”.
Bước 2: Tạo Service Để Kết Nối Pod
- Hành động:
- Tạo file
nginx-service.yaml
:touch nginx-service.yaml
Mở file và dán nội dung:
apiVersion: v1 kind: Service metadata: name: nginx-service spec: selector: app: nginx ports: - protocol: TCP port: 80 targetPort: 80 type: ClusterIP
- Triển khai Service:
kubectl apply -f nginx-service.yaml
- Kiểm tra Service:
kubectl get services
- Tạo file
- Kết quả thực tế:
- Sau khi chạy
kubectl apply
, terminal hiển thị:service/nginx-service created
- Lệnh
kubectl get services
hiển thị:NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE kubernetes ClusterIP 10.96.0.1 <none> 443/TCP 2m nginx-service ClusterIP 10.96.123.456 <none> 80/TCP 10s
(Service
nginx-service
đã được tạo với ClusterIP).
- Sau khi chạy
Bước 3: Cấu Hình Ingress Để Truy Cập Từ Bên Ngoài
- Hành động:
- Kích hoạt Ingress controller trên Minikube:
minikube addons enable ingress
- Tạo file
nginx-ingress.yaml
:touch nginx-ingress.yaml
Mở file và dán nội dung:
apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: nginx-ingress spec: rules: - host: nginx.local http: paths: - path: / pathType: Prefix backend: service: name: nginx-service port: number: 80
- Triển khai Ingress:
kubectl apply -f nginx-ingress.yaml
- Thêm
nginx.local
vào file/etc/hosts
:minikube ip
Giả sử output là
192.168.49.2
, chạy:echo "192.168.49.2 nginx.local" | sudo tee -a /etc/hosts
- Truy cập
http://nginx.local
trên trình duyệt.
- Kích hoạt Ingress controller trên Minikube:
- Kết quả thực tế:
- Sau khi chạy
minikube addons enable ingress
, terminal hiển thị:The 'ingress' addon is enabled
- Sau khi chạy
kubectl apply
, terminal hiển thị:ingress.networking.k8s.io/nginx-ingress created
- Truy cập
http://nginx.local
, bạn sẽ thấy trang mặc định của Nginx:Welcome to nginx!
- Sau khi chạy
Bước 4: Xóa Tài Nguyên Để Dọn Dẹp
- Hành động:
- Xóa Ingress, Service, và Deployment:
kubectl delete -f nginx-ingress.yaml kubectl delete -f nginx-service.yaml kubectl delete -f nginx-deployment.yaml
- Dừng và xóa cluster Minikube:
minikube stop minikube delete
- Xóa Ingress, Service, và Deployment:
- Kết quả thực tế:
- Sau khi chạy các lệnh
kubectl delete
, terminal hiển thị:ingress.networking.k8s.io "nginx-ingress" deleted service "nginx-service" deleted deployment.apps "nginx-deployment" deleted
- Sau khi chạy
minikube delete
, terminal hiển thị:Deleting "minikube" in docker ... Deleted minikube cluster
- Sau khi chạy các lệnh
Lưu Ý Quan Trọng
- Ingress Controller: Minikube tích hợp sẵn Ingress controller. Trong môi trường production, bạn cần cài đặt controller như NGINX Ingress.
- Tên miền:
nginx.local
chỉ hoạt động local. Trong thực tế, bạn cần cấu hình DNS cho tên miền thật. - Tài liệu tham khảo: Xem thêm về Service (Kubernetes Service) và Ingress (Kubernetes Ingress).