refactor: 폴더 구조 변경

This commit is contained in:
donghyeon-ka
2026-08-02 00:22:19 +09:00
parent f9c463f87a
commit be2f8e4863
1869 changed files with 4565 additions and 295591 deletions
@@ -6,13 +6,13 @@
```bash
# 1) render
kubectl kustomize k8s/overlays/prod > /tmp/render.yaml
kubectl kustomize gitops/clusters/prod/main/stages/50-apps > /tmp/render.yaml
# 2) diff
kubectl diff -k k8s/overlays/prod
kubectl diff -k gitops/clusters/prod/main/stages/50-apps
# 3) apply
kubectl apply -k k8s/overlays/prod
kubectl apply -k gitops/clusters/prod/main/stages/50-apps
# 4) rollout status with timeout
kubectl rollout status deployment/auth-server -n auth-prod --timeout=10m
@@ -607,10 +607,10 @@ kubectl get pods -A -o wide --field-selector spec.nodeName="${NODE}"
git checkout v1.24.0
# 2) diff
kubectl diff -k k8s/overlays/prod
kubectl diff -k gitops/clusters/prod/main/stages/50-apps
# 3) apply
kubectl apply -k k8s/overlays/prod
kubectl apply -k gitops/clusters/prod/main/stages/50-apps
# 4) rollout status
kubectl rollout status deployment/auth-server -n auth-prod --timeout=10m
@@ -627,7 +627,7 @@ kubectl rollout status deployment/auth-server -n auth-prod --timeout=10m
## 나쁜 예시 1: diff 없이 apply
```bash
kubectl apply -k k8s/overlays/prod
kubectl apply -k gitops/clusters/prod/main/stages/50-apps
```
**문제:**