- 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ả
Tại Sao Cần CI/CD Với Kubernetes?
Kubernetes CI/CD là cách tự động hóa triển khai ứng dụng lên Kubernetes, giúp tiết kiệm thời gian và giảm lỗi thủ công. GitHub Actions là một công cụ CI/CD phổ biến, cho phép bạn chạy pipeline khi đẩy mã lên repository. Trong bài 6, bạn đã dùng Helm để triển khai ứng dụng. Bài này sẽ hướng dẫn bạn tích hợp Kubernetes với GitHub Actions để tự động triển khai ứng dụng Nginx lên Minikube.
Lưu ý: Bạn cần đã cài đặt Minikube, kubectl, và có tài khoản GitHub. Hướng dẫn này dùng Minikube 1.33.1 trên Ubuntu 22.04.
Bước 1: Chuẩn Bị Minikube Và GitHub Repository
- Hành động:
- Khởi động Minikube:
minikube start --driver=docker
- Tạo repository trên GitHub:
- Truy cập GitHub, tạo repository mới (VD:
k8s-cicd-example
).
- Truy cập GitHub, tạo repository mới (VD:
- Tạo thư mục dự án local:
mkdir k8s-cicd-example cd k8s-cicd-example git init
- Khởi động 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
git init
, terminal hiển thị:Initialized empty Git repository in /path/to/k8s-cicd-example/.git/
- Sau khi chạy
Bước 2: Tạo Ứng Dụng Và File Kubernetes Manifest
- Hành động:
- 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 --- apiVersion: v1 kind: Service metadata: name: nginx-service spec: selector: app: nginx ports: - protocol: TCP port: 80 targetPort: 80 type: ClusterIP
- Tạo file
- Kết quả thực tế:
- Cấu trúc thư mục:
k8s-cicd-example/ └── nginx-deployment.yaml
(Kiểm tra bằng lệnh
ls
).
- Cấu trúc thư mục:
Bước 3: Cấu Hình GitHub Actions Workflow
Hành động:
- Tạo thư mục và file workflow:
mkdir -p .github/workflows touch .github/workflows/deploy.yml
Mở file
.github/workflows/deploy.yml
và dán nội dung:name: Deploy to Kubernetes on: push: branches: - main jobs: deploy: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v3 - name: Setup Minikube uses: medyagh/setup-minikube@master with: minikube-version: 'v1.33.1' driver: docker - name: Deploy to Kubernetes run: kubectl apply -f nginx-deployment.yaml - name: Verify Deployment run: kubectl get pods
- Tạo thư mục và file workflow:
- Kết quả thực tế:
- Cấu trúc thư mục:
k8s-cicd-example/ ├── .github/ │ └── workflows/ │ └── deploy.yml └── nginx-deployment.yaml
- Cấu trúc thư mục:
Bước 4: Đẩy Mã Và Kiểm Tra Pipeline
- Hành động:
- Commit và đẩy mã lên GitHub:
git add . git commit -m "Add Kubernetes manifest and CI/CD workflow" git branch -M main git remote add origin https://github.com/your-username/k8s-cicd-example.git git push -u origin main
(Thay
your-username
bằng tên người dùng GitHub của bạn). - Kiểm tra pipeline trên GitHub:
- Truy cập repository
k8s-cicd-example
> Actions.
- Truy cập repository
- Commit và đẩy mã lên GitHub:
- Kết quả thực tế:
- Sau khi đẩy mã, terminal hiển thị:
To https://github.com/your-username/k8s-cicd-example.git [new branch] main -> main
- Trên GitHub Actions, log pipeline (rút gọn):
Deploy to Kubernetes Setup Minikube [command] minikube start --driver=docker Done! kubectl is now configured to use "minikube" cluster Deploy to Kubernetes [command] kubectl apply -f nginx-deployment.yaml deployment.apps/nginx-deployment created service/nginx-service created Verify Deployment [command] kubectl get pods NAME READY STATUS RESTARTS AGE nginx-deployment-5d9f8b6f5-abcde 1/1 Running 0 10s nginx-deployment-5d9f8b6f5-fghij 1/1 Running 0 10s
(Pipeline chạy thành công, triển khai 2 Pod Nginx).
- Sau khi đẩy mã, terminal hiển thị:
Bước 5: Xóa Tài Nguyên Để Dọn Dẹp
- Hành động:
- Xóa tài nguyên trên Minikube local:
kubectl delete -f nginx-deployment.yaml minikube stop minikube delete
- Xóa repository trên GitHub (tùy chọn):
- Truy cập repository > Settings > Delete this repository.
- Xóa tài nguyên trên Minikube local:
- Kết quả thực tế:
- Sau khi chạy
kubectl delete
, terminal hiển thị:deployment.apps "nginx-deployment" deleted service "nginx-service" deleted
- Sau khi chạy
minikube delete
, terminal hiển thị:Deleting "minikube" in docker ... Deleted minikube cluster
- Sau khi chạy
Lưu Ý Quan Trọng
- Minikube trong CI/CD: Minikube phù hợp để thử nghiệm. Trong production, dùng cluster thực (VD: EKS, GKE).
- Bảo mật: Nếu dùng cluster production, lưu thông tin truy cập (kubeconfig) trong GitHub Secrets.
- Tài liệu tham khảo: Xem thêm về GitHub Actions (GitHub Actions Documentation).
Website không chứa bất kỳ quảng cáo nào, mọi đóng góp để duy trì phát triển cho website (donation) xin vui lòng gửi về STK 90.2142.8888 - Ngân hàng Vietcombank Thăng Long - TRAN VAN BINH
=============================
Nếu bạn không muốn bị AI thay thế và tiết kiệm 3-5 NĂM trên con đường trở thành DBA chuyên nghiệp hay làm chủ Database thì hãy đăng ký ngay KHOÁ HỌC ORACLE DATABASE A-Z ENTERPRISE, được Coaching trực tiếp từ tôi với toàn bộ bí kíp thực chiến, thủ tục, quy trình của gần 20 năm kinh nghiệm (mà bạn sẽ KHÔNG THỂ tìm kiếm trên Internet/Google) từ đó giúp bạn dễ dàng quản trị mọi hệ thống Core tại Việt Nam và trên thế giới, đỗ OCP.
- CÁCH ĐĂNG KÝ: Gõ (.) hoặc để lại số điện thoại hoặc inbox https://m.me/tranvanbinh.vn hoặc Hotline/Zalo 090.29.12.888
- Chi tiết tham khảo:
https://bit.ly/oaz_w
=============================
2 khóa học online qua video giúp bạn nhanh chóng có những kiến thức nền tảng về Linux, Oracle, học mọi nơi, chỉ cần có Internet/4G:
- Oracle cơ bản: https://bit.ly/admin_1200
- Linux: https://bit.ly/linux_1200
=============================
KẾT NỐI VỚI CHUYÊN GIA TRẦN VĂN BÌNH:
📧 Mail: binhoracle@gmail.com
☎️ Mobile/Zalo: 0902912888
👨 Facebook: https://www.facebook.com/BinhOracleMaster
👨 Inbox Messenger: https://m.me/101036604657441 (profile)
👨 Fanpage: https://www.facebook.com/tranvanbinh.vn
👨 Inbox Fanpage: https://m.me/tranvanbinh.vn
👨👩 Group FB: https://www.facebook.com/groups/DBAVietNam
👨 Website: https://www.tranvanbinh.vn
👨 Blogger: https://tranvanbinhmaster.blogspot.com
🎬 Youtube: https://www.youtube.com/@binhguru
👨 Tiktok: https://www.tiktok.com/@binhguru
👨 Linkin: https://www.linkedin.com/in/binhoracle
👨 Twitter: https://twitter.com/binhguru
👨 Podcast: https://www.podbean.com/pu/pbblog-eskre-5f82d6
👨 Địa chỉ: Tòa nhà Sun Square - 21 Lê Đức Thọ - Phường Mỹ Đình 1 - Quận Nam Từ Liêm - TP.Hà Nội
=============================
cơ sở dữ liệu, cơ sở dữ liệu quốc gia, database, AI, trí tuệ nhân tạo, artificial intelligence, machine learning, deep learning, LLM, ChatGPT, DeepSeek, Grok, oracle tutorial, học oracle database, Tự học Oracle, Tài liệu Oracle 12c tiếng Việt, Hướng dẫn sử dụng Oracle Database, Oracle SQL cơ bản, Oracle SQL là gì, Khóa học Oracle Hà Nội, Học chứng chỉ Oracle ở đầu, Khóa học Oracle online,sql tutorial, khóa học pl/sql tutorial, học dba, học dba ở việt nam, khóa học dba, khóa học dba sql, tài liệu học dba oracle, Khóa học Oracle online, học oracle sql, học oracle ở đâu tphcm, học oracle bắt đầu từ đâu, học oracle ở hà nội, oracle database tutorial, oracle database 12c, oracle database là gì, oracle database 11g, oracle download, oracle database 19c/21c/23c/23ai, oracle dba tutorial, oracle tunning, sql tunning , oracle 12c, oracle multitenant, Container Databases (CDB), Pluggable Databases (PDB), oracle cloud, oracle security, oracle fga, audit_trail,oracle RAC, ASM, oracle dataguard, oracle goldengate, mview, oracle exadata, oracle oca, oracle ocp, oracle ocm , oracle weblogic, postgresql tutorial, mysql tutorial, mariadb tutorial, ms sql server tutorial, nosql, mongodb tutorial, oci, cloud, middleware tutorial, docker, k8s, micro service, hoc solaris tutorial, hoc linux tutorial, hoc aix tutorial, unix tutorial, securecrt, xshell, mobaxterm, putty