Add complete portfolio project including: - Next.js application in services/nextjs - Docker configurations for dev and prod - Kubernetes deployment manifests with kustomize - ArgoCD application configuration - GitHub Actions workflow for automated builds
19 lines
296 B
YAML
19 lines
296 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
namespace: portfolio
|
|
|
|
resources:
|
|
- ../../base
|
|
|
|
commonLabels:
|
|
environment: production
|
|
|
|
# 이미지 태그 설정
|
|
images:
|
|
- name: ghcr.io/mayne0213/portfolio
|
|
newTag: latest
|
|
|
|
patchesStrategicMerge:
|
|
- deployment-patch.yaml
|