안녕하세요 오늘은 ArgoCD,Github Actions 및 AKS에서 GitOps를 사용하여 CI/CD 구현하는 프로젝트를 진행해보도록 하겠습니다. 🔹사전작업Github에 GitOps Repository를 생성해줍니다.local 환경에서 GitOps 폴더를 생성하신뒤, 간단한 nginx 프로젝트 구조를 만들어줍니다.각 파일들에 대해 소스코드를 작성해줍니다./src/index.html 파일 Welcome to My Nginx App! This is a simple static website served by Nginx.Dockerfile# Nginx를 기반 이미지로 사용합니다.FROM nginx:latest# Nginx 기본 설정 파일을 대체합니다.COPY nginx.conf /etc/ng..