- Added ingress.yaml for production and development environments - Updated kustomization files to include ingress resources - Migrated from centralized ingress management to per-app architecture
21 lines
373 B
YAML
21 lines
373 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
namespace: jovies
|
|
|
|
resources:
|
|
- ../../base
|
|
- resourcequota.yaml
|
|
- ingress.yaml
|
|
|
|
commonLabels:
|
|
environment: production
|
|
|
|
# 이미지 태그 설정
|
|
images:
|
|
- name: ghcr.io/mayne0213/jovies
|
|
newTag: main-sha-beff07e89351858d72b29bc48cd27fb40fce97dd
|
|
|
|
patchesStrategicMerge:
|
|
- deployment-patch.yaml
|