fix: ArgoCD overlay kind → eks 전환 + ai PVC 포함 (closes #33)#34
Merged
Conversation
EKS 클러스터에서 자식 Application 5개가 overlays/kind/를 가리켜 ErrImageNeverPull이 발생하던 문제 해결. ai는 PVC 미생성으로 Pending이던 문제도 base kustomization에 pvc.yaml 추가해 해결. ai-secret은 .gitignore 대상이라 ArgoCD가 sync할 수 없음 - 별도 처리 필요. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
ai,backend,frontend,postgres,redis)의path를overlays/kind/...→overlays/eks/...로 변경k8s/manifests/base/ai/kustomization.yaml에pvc.yaml추가 — ai Pod의ai-model-pvcPending 문제 해결Closes #33
배경
EKS 클러스터에 ArgoCD를 새로 부트스트랩한 결과:
backend,frontend: kind overlay의imagePullPolicy: Never때문에ErrImageNeverPullai:ai-model-pvc미생성으로Pendingpostgres,redis: 공식 이미지라 정상 Running후속 (이 PR 외)
ai-secret은.gitignore대상 — ArgoCD가 sync 불가. SealedSecrets/ExternalSecrets 도입 또는 수동 apply 필요base/ai/secret.yaml의 OpenAI 키가 실제 사용 중이면 로테이션 고려Test plan
Synced+Healthy확인kubectl get pods -A에서 backend/frontend/ai 모두 Running 확인🤖 Generated with Claude Code