wonho 7840321c3d deployment/k8s: Health Check probe 설정 주석 처리
각 서비스의 standalone deployment.yaml에서 probe 설정을 주석 처리
- kustomize base 설정을 사용하는 방향으로 통일

변경된 서비스:
- ai-service
- analytics-service
- content-service
- distribution-service
- event-service
- participation-service
- user-service

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-31 10:46:17 +09:00

64 lines
1.8 KiB
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: participation-service
namespace: kt-event-marketing
labels:
app: participation-service
spec:
replicas: 1
selector:
matchLabels:
app: participation-service
template:
metadata:
labels:
app: participation-service
spec:
imagePullSecrets:
- name: kt-event-marketing
containers:
- name: participation-service
image: acrdigitalgarage01.azurecr.io/kt-event-marketing/participation-service:latest
imagePullPolicy: Always
ports:
- containerPort: 8084
name: http
envFrom:
- configMapRef:
name: cm-common
- configMapRef:
name: cm-participation-service
- secretRef:
name: secret-common
- secretRef:
name: secret-participation-service
resources:
requests:
cpu: "256m"
memory: "256Mi"
limits:
cpu: "1024m"
memory: "1024Mi"
# startupProbe:
# httpGet:
# path: /api/v1/participations/actuator/health/liveness
# port: 8084
# initialDelaySeconds: 60
# periodSeconds: 10
# failureThreshold: 30
# livenessProbe:
# httpGet:
# path: /api/v1/participations/actuator/health/liveness
# port: 8084
# initialDelaySeconds: 0
# periodSeconds: 10
# failureThreshold: 3
# readinessProbe:
# httpGet:
# path: /api/v1/participations/actuator/health/readiness
# port: 8084
# initialDelaySeconds: 0
# periodSeconds: 10
# failureThreshold: 3