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
15 lines
265 B
YAML
15 lines
265 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
resources:
|
|
- deployment.yaml
|
|
- service.yaml
|
|
|
|
commonLabels:
|
|
app.kubernetes.io/name: portfolio
|
|
app.kubernetes.io/component: web
|
|
|
|
images:
|
|
- name: ghcr.io/mayne0213/portfolio
|
|
newTag: latest
|