Phân tích vai trò DevOps trong một công ty thật
🎯 Mục tiêu: Đọc một case study (Netflix/Etsy/Amazon) và lập bảng map thực hành DevOps theo CALMS.
🧰 Công cụ / nền tảng: VS Code, Git, terminal (Bash hoặc PowerShell).
📦 Chuẩn bị: Cài Git + VS Code; có tài khoản GitHub.
▶️ Các bước (CLI):
# 1. Tạo workspace và repo cục bộ
mkdir devops-m01-lab && cd devops-m01-lab
git init
code analysis.md
# 2. Trong analysis.md, tạo bảng CALMS (Culture/Automation/Lean/Measurement/Sharing)
# điền dẫn chứng từ case study đã chọn.
# 3. Commit kết quả
git add analysis.md
git commit -m "lab-001: CALMS analysis of "
🖥️ Đối chiếu GUI:
Trong VS Code: dùng tab Source Control (Ctrl+Shift+G) để stage và commit thay cho lệnh git.
✅ Kết quả mong đợi: git log --oneline hiển thị 1 commit; file analysis.md có bảng 5 dòng CALMS với dẫn chứng cụ thể.
🧹 Cleanup: giữ lại repo để dùng cho LAB-003/005, hoặc cd .. && rm -rf devops-m01-lab.