mirror of
https://github.com/cna-bootcamp/phonebill.git
synced 2025-12-06 16:16:23 +00:00
- Deployment 패치 파일의 따옴표 제거 (15개 파일) - 리소스 설정을 Kubernetes YAML 표준 형식으로 변경 - dev/staging/prod 환경별 패치 호환성 개선 - Strategic Merge Patch 충돌 문제 해결 수정 내용: - memory: "256Mi" → memory: 256Mi - cpu: "256m" → cpu: 256m - 모든 환경에서 kustomize 빌드 성공 검증 완료 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
34 lines
832 B
YAML
34 lines
832 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: kos-mock
|
|
namespace: phonebill-prod
|
|
spec:
|
|
replicas: 3
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: kos-mock
|
|
resources:
|
|
requests:
|
|
memory: 1024Mi
|
|
cpu: 1024m
|
|
limits:
|
|
memory: 4096Mi
|
|
cpu: 4096m
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /actuator/health
|
|
port: 8080
|
|
initialDelaySeconds: 120
|
|
periodSeconds: 30
|
|
timeoutSeconds: 10
|
|
failureThreshold: 3
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /actuator/health/readiness
|
|
port: 8080
|
|
initialDelaySeconds: 60
|
|
periodSeconds: 10
|
|
timeoutSeconds: 5
|
|
failureThreshold: 3 |