- Added ingress.yaml for production and development environments - Updated kustomization files to include ingress resources - Migrated from centralized ingress management to per-app architecture
24 lines
450 B
YAML
24 lines
450 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
namespace: todo-dev
|
|
|
|
resources:
|
|
- ../../base
|
|
- resourcequota.yaml
|
|
- namespace.yaml
|
|
- secretstore.yaml
|
|
- externalsecret.yaml
|
|
- ingress.yaml
|
|
|
|
commonLabels:
|
|
environment: development
|
|
|
|
# 이미지 태그 설정
|
|
images:
|
|
- name: gitea0213.kro.kr/bluemayne/todo
|
|
newTag: develop-sha-1a8d8cf79051d01d29c83356d54f318ab20fdc51
|
|
|
|
patchesStrategicMerge:
|
|
- deployment-patch.yaml
|