19 lines
445 B
YAML
19 lines
445 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
resources:
|
|
# ArgoCD Application 리소스는 infrastructure/kustomization.yaml에서 관리
|
|
# - argocd/homer.yaml
|
|
|
|
# Namespace with Goldilocks label
|
|
- namespace.yaml
|
|
|
|
- deployment.yaml
|
|
|
|
# ConfigMap 생성: config.yml만 포함 (assets는 InitContainer에서 Git에서 복사)
|
|
configMapGenerator:
|
|
- name: homer-config
|
|
namespace: homer
|
|
files:
|
|
- config.yml
|