- Create /root/.chainlit directory in Dockerfile to prevent FileExistsError - Reduce replicas from 2 to 1 to conserve resources - Lower CPU request from 500m to 100m (insufficient CPU on nodes) - Lower memory request from 512Mi to 256Mi - Remove health check probes (Chainlit doesn't have /health endpoint)
21 lines
422 B
YAML
21 lines
422 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
namespace: mas
|
|
|
|
resources:
|
|
- ../../base
|
|
- namespace.yaml
|
|
- resourcequota.yaml
|
|
- externalsecret.yaml
|
|
- ingress.yaml
|
|
|
|
commonLabels:
|
|
environment: production
|
|
|
|
# 이미지 태그 설정 (ArgoCD Image Updater가 자동으로 업데이트)
|
|
images:
|
|
- name: gitea0213.kro.kr/bluemayne/mas
|
|
newTag: main-sha-349c71880a580d01c69d516e13ee1c4d4c02cd08
|
|
|